> ## 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 Show

> Fetch a Signal Registration. Includes SDK V2 and CLI requests, input constraints, response fields, and Deepline credit cost.

Fetch a Signal Registration.

<Info>
  Tool ID: `salesloft_integrations_signals_registrations_show`
</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_show',
  {
    "id": 123
  },
);

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

### CLI

```bash theme={null}
deepline tools execute salesloft_integrations_signals_registrations_show --input '{
  "id": 123
}' --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_show --json` for the latest machine-readable contract.

## Input reference

Fetch a Signal Registration by ID. For additional information on Signal Registrations, visit the signals details page .

| Name         | Type      | Required | Default | Details                         |
| ------------ | --------- | -------- | ------- | ------------------------------- |
| `payload.id` | `integer` | Yes      | —       | The signal registration to show |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Fetch a Signal Registration by ID. For additional information on Signal Registrations, visit the signals details page .",
    "properties": {
      "id": {
        "type": "integer",
        "description": "The signal registration to show"
      }
    },
    "required": [
      "id"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

Standard tool result payload.

| Name                                | Type      | Required | Default | Details                                                                                 |
| ----------------------------------- | --------- | -------- | ------- | --------------------------------------------------------------------------------------- |
| `result.data`                       | `object`  | 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": "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)
