> ## 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: Integrations Signals Registrations Index

> List Signal Registrations. Includes SDK V2 and CLI requests, input constraints, response fields, and Deepline credit cost.

List Signal Registrations.

<Info>
  Tool ID: `salesloft_integrations_signals_registrations_index`
</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_integrations_signals_registrations_index',
  {
    "per_page": 123,
    "page": 123,
    "include_paging_counts": true
  },
);

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

### CLI

```bash theme={null}
deepline tools execute salesloft_integrations_signals_registrations_index --input '{
  "per_page": 123,
  "page": 123,
  "include_paging_counts": true
}' --json
```

## Example response

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

```json theme={null}
{
  "data": [
    {
      "type": "example",
      "signal_name": "Example",
      "owner_user_guid": "owner_user_123"
    }
  ]
}
```

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

## Input reference

List all Signal Registrations for all Integrations.

| Name                            | Type      | Required | Default | Details                                                                                                                                |
| ------------------------------- | --------- | -------- | ------- | -------------------------------------------------------------------------------------------------------------------------------------- |
| `payload.per_page`              | `integer` | No       | —       | How many records to show per page in the range \[1, 100]. Defaults to 25                                                               |
| `payload.page`                  | `integer` | No       | —       | The current page to fetch results from. Defaults to 1                                                                                  |
| `payload.include_paging_counts` | `boolean` | No       | —       | Whether to include total\_pages and total\_count in the metadata. Defaults to false                                                    |
| `payload.sort_by`               | `string`  | No       | —       | Key to sort on, must be one of: id, updated\_at. Defaults to updated\_at                                                               |
| `payload.sort_direction`        | `string`  | No       | —       | Direction to sort in, must be one of: ASC, DESC. Defaults to DESC                                                                      |
| `payload.globally_installed_at` | `object`  | No       | —       | Globally installed at time filters                                                                                                     |
| `payload.type`                  | `array`   | No       | —       | Types of signal registrations to fetch                                                                                                 |
| `payload.signal_name`           | `string`  | No       | —       | Conversational name of the signal                                                                                                      |
| `payload.updated_at`            | `object`  | No       | —       | Returns all matching records that are greater than the provided iso8601 timestamp. The comparison is done using microsecond precision. |
| `payload.integration_id`        | `array`   | No       | —       | Integration IDs of signal registrations to fetch. Not applied by default                                                               |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "List all Signal Registrations for all Integrations.",
    "properties": {
      "per_page": {
        "type": "integer",
        "description": "How many records to show per page in the range [1, 100]. Defaults to 25"
      },
      "page": {
        "type": "integer",
        "description": "The current page to fetch results from. Defaults to 1"
      },
      "include_paging_counts": {
        "type": "boolean",
        "description": "Whether to include total_pages and total_count in the metadata. Defaults to false"
      },
      "sort_by": {
        "type": "string",
        "description": "Key to sort on, must be one of: id, updated_at. Defaults to updated_at"
      },
      "sort_direction": {
        "type": "string",
        "description": "Direction to sort in, must be one of: ASC, DESC. Defaults to DESC"
      },
      "globally_installed_at": {
        "type": "object",
        "description": "Globally installed at time filters"
      },
      "type": {
        "type": "array",
        "description": "Types of signal registrations to fetch",
        "items": {}
      },
      "signal_name": {
        "type": "string",
        "description": "Conversational name of the signal"
      },
      "updated_at": {
        "type": "object",
        "description": "Returns all matching records that are greater than the provided iso8601 timestamp. The comparison is done using microsecond precision.",
        "properties": {
          "gt": {
            "type": "string",
            "description": "Returns all matching records that are greater than the provided iso8601 timestamp. The comparison is done using microsecond precision."
          },
          "gte": {
            "type": "string",
            "description": "Returns all matching records that are greater than or equal to the provided iso8601 timestamp. The comparison is done using microsecond precision."
          },
          "lt": {
            "type": "string",
            "description": "Returns all matching records that are less than the provided iso8601 timestamp. The comparison is done using microsecond precision."
          },
          "lte": {
            "type": "string",
            "description": "Returns all matching records that are less than or equal to the provided iso8601 timestamp. The comparison is done using microsecond precision."
          }
        },
        "required": [],
        "additionalProperties": false
      },
      "integration_id": {
        "type": "array",
        "description": "Integration IDs of signal registrations to fetch. Not applied by default",
        "items": {}
      }
    },
    "required": [],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

Standard tool result payload.

| Name                                  | Type      | Required | Default | Details                                                                                 |
| ------------------------------------- | --------- | -------- | ------- | --------------------------------------------------------------------------------------- |
| `result.data`                         | `array`   | Yes      | —       | Provider response payload.                                                              |
| `result.data[].type`                  | `string`  | No       | —       | Signal registration type.                                                               |
| `result.data[].signal_name`           | `string`  | No       | —       | Signal name.                                                                            |
| `result.data[].owner_user_guid`       | `string`  | No       | —       | User GUID of the Registration owner.                                                    |
| `result.data[].integration_slug`      | `string`  | No       | —       | Integration Slug linked to the signal registration.                                     |
| `result.data[].integration`           | `record`  | No       | —       | Integration linked to signal registration.                                              |
| `result.data[].indicators`            | `array`   | No       | —       | Array of signal indicators registrations.                                               |
| `result.data[].id`                    | `integer` | No       | —       | Registration ID.                                                                        |
| `result.data[].globally_installed_at` | `string`  | No       | —       | ISO8601 timestamp of when the registration was globally installed. Format: `date-time`. |
| `result.data[].description`           | `record`  | No       | —       | Localized signal description.                                                           |
| `result.data[].data_shape`            | `record`  | No       | —       | JSON schema of the signal data.                                                         |
| `result.data[].created_at`            | `string`  | No       | —       | ISO8601 timestamp of when the signal registration was created. Format: `date-time`.     |
| `result.data[].attribution`           | `array`   | No       | —       | Array of possible attributions.                                                         |
| `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",
          "description": "Provider response payload.",
          "properties": {
            "type": {
              "type": "string",
              "description": "Signal registration type."
            },
            "signal_name": {
              "type": "string",
              "description": "Signal name."
            },
            "owner_user_guid": {
              "type": "string",
              "description": "User GUID of the Registration owner."
            },
            "integration_slug": {
              "type": "string",
              "description": "Integration Slug linked to the signal registration."
            },
            "integration": {
              "type": "object",
              "description": "Integration linked to signal registration."
            },
            "indicators": {
              "type": "array",
              "description": "Array of signal indicators registrations.",
              "items": {
                "type": "object",
                "properties": {},
                "additionalProperties": true
              }
            },
            "id": {
              "type": "integer",
              "description": "Registration ID."
            },
            "globally_installed_at": {
              "type": "string",
              "description": "ISO8601 timestamp of when the registration was globally installed.",
              "format": "date-time"
            },
            "description": {
              "type": "object",
              "description": "Localized signal description."
            },
            "data_shape": {
              "type": "object",
              "description": "JSON schema of the signal data."
            },
            "created_at": {
              "type": "string",
              "description": "ISO8601 timestamp of when the signal registration was created.",
              "format": "date-time"
            },
            "attribution": {
              "type": "array",
              "description": "Array of possible attributions.",
              "items": {
                "type": "string"
              }
            }
          },
          "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)
