> ## Documentation Index
> Fetch the complete documentation index at: https://deepline.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Salesloft: Third Party Feed Items Create

> Create a live feed item. Includes SDK V2 and CLI requests, input constraints, response fields, and Deepline credit cost.

Create a live feed item.

<Info>
  Tool ID: `salesloft_third_party_live_feed_items_create`
</Info>

## Run this action

Use the TypeScript SDK for a single call. Put `ctx.tools.execute(...)` inside a Play when the call should be durable, scheduled, or run across a CSV.

```ts theme={null}
import { Deepline } from 'deepline';

const deepline = await Deepline.connect();
const result = await deepline.tools.execute(
  'salesloft_third_party_live_feed_items_create',
  {
    "user_guid": "user_123",
    "subject_type": "example",
    "subject_id": 123,
    "message": "Example message",
    "idempotency_key": "example",
    "event_occurred_at": "2026-01-15T12:00:00Z"
  },
);

console.log(result.toolResponse.raw);
```

### CLI

```bash theme={null}
deepline tools execute salesloft_third_party_live_feed_items_create --input '{
  "user_guid": "user_123",
  "subject_type": "example",
  "subject_id": 123,
  "message": "Example message",
  "idempotency_key": "example",
  "event_occurred_at": "2026-01-15T12:00:00Z"
}' --json
```

## Example response

The SDK exposes this shape at `result.toolResponse.raw`. Values below are representative.

```json theme={null}
{
  "data": [
    {
      "user_guid": "user_123",
      "title": "VP of Engineering",
      "rollup_key": "example"
    }
  ]
}
```

Use `deepline tools get salesloft_third_party_live_feed_items_create --json` for the latest machine-readable contract.

## Input reference

Creates a live feed item that can be sent to users. May only be used by whitelisted Frontend Integrations with notifications:write, people:read, and accounts:read scopes. Reference the Salesloft App Directory and Frontend Integrations sections for additional details.

| Name                        | Type      | Required | Default | Details                                                                                                                                                                                                                                                                                                                                                                         |
| --------------------------- | --------- | -------- | ------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `payload.user_guid`         | `string`  | Yes      | —       | The guid for the user that this live feed item should be shown to.                                                                                                                                                                                                                                                                                                              |
| `payload.subject_type`      | `string`  | Yes      | —       | The type of the subject of the live feed item.                                                                                                                                                                                                                                                                                                                                  |
| `payload.subject_id`        | `integer` | Yes      | —       | The ID of the subject of the live feed item (i.e. the "person" id).                                                                                                                                                                                                                                                                                                             |
| `payload.message`           | `string`  | Yes      | —       | The message that relates to the subject. This message should start with a lower-case past-tense verb and end with a period (e.g. "received a package."). When live feed items are displayed to users, the subject's name is concatenated with the message and a joining space. Only HTML tags with an "href" attribute are allowed. Other attributes and tags will be stripped. |
| `payload.idempotency_key`   | `string`  | Yes      | —       | Uniquely provided string specific to this event. This should be a value which can't be duplicated between external systems, meaning that an id is not sufficient.                                                                                                                                                                                                               |
| `payload.event_occurred_at` | `string`  | Yes      | —       | The iso8601 time the item was created. Provide this to account for any latency                                                                                                                                                                                                                                                                                                  |

<details>
  <summary>Show raw input schema</summary>

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Creates a live feed item that can be sent to users. May only be used by whitelisted Frontend Integrations with notifications:write, people:read, and accounts:read scopes. Reference the Salesloft App Directory and Frontend Integrations sections for additional details.",
    "properties": {
      "user_guid": {
        "type": "string",
        "description": "The guid for the user that this live feed item should be shown to."
      },
      "subject_type": {
        "type": "string",
        "description": "The type of the subject of the live feed item."
      },
      "subject_id": {
        "type": "integer",
        "description": "The ID of the subject of the live feed item (i.e. the \"person\" id)."
      },
      "message": {
        "type": "string",
        "description": "The message that relates to the subject. This message should start with a lower-case past-tense verb and end with a period (e.g. \"received a package.\"). When live feed items are displayed to users, the subject's name is concatenated with the message and a joining space. Only HTML tags with an \"href\" attribute are allowed. Other attributes and tags will be stripped."
      },
      "idempotency_key": {
        "type": "string",
        "description": "Uniquely provided string specific to this event. This should be a value which can't be duplicated between external systems, meaning that an id is not sufficient."
      },
      "event_occurred_at": {
        "type": "string",
        "description": "The iso8601 time the item was created. Provide this to account for any latency"
      }
    },
    "required": [
      "subject_type",
      "subject_id",
      "event_occurred_at",
      "user_guid",
      "message",
      "idempotency_key"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

Standard tool result payload.

| Name                              | Type      | Required | Default | Details                                                                                                |
| --------------------------------- | --------- | -------- | ------- | ------------------------------------------------------------------------------------------------------ |
| `result.data`                     | `array`   | Yes      | —       | Provider response payload.                                                                             |
| `result.data[].user_guid`         | `string`  | No       | —       | UUID of the user this item is for                                                                      |
| `result.data[].title`             | `string`  | No       | —       | A plaintext title for this event                                                                       |
| `result.data[].rollup_key`        | `string`  | No       | —       | The key that should be used to rollup events client side. null or empty values should not be rolled up |
| `result.data[].path`              | `string`  | No       | —       | The path to the application that should be followed                                                    |
| `result.data[].metadata`          | `record`  | No       | —       | The metadata created for this event                                                                    |
| `result.data[].message`           | `string`  | No       | —       | A plaintext message for this event                                                                     |
| `result.data[].id`                | `integer` | No       | —       | ID of this item                                                                                        |
| `result.data[].event_type`        | `string`  | No       | —       | The type of event                                                                                      |
| `result.data[].event_occurred_at` | `string`  | No       | —       | When this event occurred Format: `date-time`.                                                          |
| `result.data[].alert_metadata`    | `record`  | No       | —       | Information about whether this event should trigger an alert                                           |
| `result.meta`                     | `object`  | No       | —       | Additional response metadata (status, paging).                                                         |

<details>
  <summary>Show raw output schema</summary>

  ### Output JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Standard tool result payload.",
    "properties": {
      "data": {
        "type": "array",
        "description": "Provider response payload.",
        "items": {
          "type": "object",
          "properties": {
            "user_guid": {
              "type": "string",
              "description": "UUID of the user this item is for"
            },
            "title": {
              "type": "string",
              "description": "A plaintext title for this event"
            },
            "rollup_key": {
              "type": "string",
              "description": "The key that should be used to rollup events client side. null or empty values should not be rolled up"
            },
            "path": {
              "type": "string",
              "description": "The path to the application that should be followed"
            },
            "metadata": {
              "type": "object",
              "description": "The metadata created for this event"
            },
            "message": {
              "type": "string",
              "description": "A plaintext message for this event"
            },
            "id": {
              "type": "integer",
              "description": "ID of this item"
            },
            "event_type": {
              "type": "string",
              "description": "The type of event"
            },
            "event_occurred_at": {
              "type": "string",
              "description": "When this event occurred",
              "format": "date-time"
            },
            "alert_metadata": {
              "type": "object",
              "description": "Information about whether this event should trigger an alert"
            }
          },
          "additionalProperties": false
        }
      },
      "meta": {
        "type": "object",
        "description": "Additional response metadata (status, paging).",
        "additionalProperties": true
      }
    },
    "required": [
      "data"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Deepline cost

* Pricing model: `fixed` (per call).
* Estimated Deepline credits: `0` per pricing unit.
* Provider-native pricing may still exist outside Deepline credit billing.

## Related documentation

* [Salesloft provider guide](/docs/providers/salesloft/guide)
* [SDK V2 quickstart](/docs/sdk-v2/quickstart)
* [SDK reference](/docs/sdk-v2/sdk-reference)
* [Run tools across a CSV](/docs/sdk-v2/batch-csv)
