> ## 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: Data Control Requests Show

> Fetch a Request record. Salesloft Data Control Requests Show reference includes SDK V2 and CLI requests, input constraints, response fields, and Deepline cost.

Fetch a Request record.

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

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

### CLI

```bash theme={null}
deepline tools execute salesloft_data_control_requests_show --input '{
  "id": 123
}' --json
```

## Example response

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

```json theme={null}
{
  "data": {
    "team_id": 123,
    "request_type": "example",
    "user_guid": "user_123"
  }
}
```

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

## Input reference

Get the details for a given Request This endpoint requires the "data-control" scope for access.

| Name         | Type      | Required | Default | Details           |
| ------------ | --------- | -------- | ------- | ----------------- |
| `payload.id` | `integer` | Yes      | —       | ID of the Request |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Get the details for a given Request This endpoint requires the \"data-control\" scope for access.",
    "properties": {
      "id": {
        "type": "integer",
        "description": "ID of the Request"
      }
    },
    "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.team_id`      | `integer` | No       | —       | ID of the Request's target team                |
| `result.data.request_type` | `string`  | No       | —       | Standardized type of the Request               |
| `result.data.user_guid`    | `string`  | No       | —       | ID of the user who created the Request         |
| `result.data.dry_run`      | `boolean` | No       | —       | Whether or not to change data                  |
| `result.data.metadata`     | `record`  | No       | —       | Data that varies across Request types          |
| `result.data.events`       | `array`   | No       | —       | Instances in which a Request has been executed |
| `result.data.id`           | `integer` | No       | —       | ID of the Request                              |
| `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": {
          "team_id": {
            "type": "integer",
            "description": "ID of the Request's target team"
          },
          "request_type": {
            "type": "string",
            "description": "Standardized type of the Request"
          },
          "user_guid": {
            "type": "string",
            "description": "ID of the user who created the Request"
          },
          "dry_run": {
            "type": "boolean",
            "description": "Whether or not to change data"
          },
          "metadata": {
            "type": "object",
            "description": "Data that varies across Request types"
          },
          "events": {
            "type": "array",
            "description": "Instances in which a Request has been executed",
            "items": {
              "type": "object",
              "properties": {},
              "additionalProperties": true
            }
          },
          "id": {
            "type": "integer",
            "description": "ID of the Request"
          }
        },
        "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)
