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

> Retrieve a list of Requests. Includes SDK V2 and CLI requests, input constraints, response fields, and Deepline credit cost.

Retrieve a list of Requests.

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

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

### CLI

```bash theme={null}
deepline tools execute salesloft_data_control_requests_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": [
    {
      "team_id": 123,
      "request_type": "example",
      "user_guid": "user_123"
    }
  ]
}
```

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

## Input reference

Query Requests by some given filters This endpoint requires the "data-control" scope for access.

| 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: inserted\_at. Defaults to inserted\_at              |
| `payload.sort_direction`        | `string`  | No       | —       | Direction to sort in, must be one of: ASC, DESC. Defaults to DESC                   |
| `payload.team_id`               | `integer` | No       | —       | Internal Use Only                                                                   |
| `payload.request_type`          | `string`  | No       | —       | Standardized type of the Request                                                    |
| `payload.dry_run`               | `boolean` | No       | —       | Whether or not the Request was a dry run                                            |
| `payload.user_guid`             | `string`  | No       | —       | User guid                                                                           |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Query Requests by some given filters This endpoint requires the \"data-control\" scope for access.",
    "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: inserted_at. Defaults to inserted_at"
      },
      "sort_direction": {
        "type": "string",
        "description": "Direction to sort in, must be one of: ASC, DESC. Defaults to DESC"
      },
      "team_id": {
        "type": "integer",
        "description": "Internal Use Only"
      },
      "request_type": {
        "type": "string",
        "description": "Standardized type of the Request"
      },
      "dry_run": {
        "type": "boolean",
        "description": "Whether or not the Request was a dry run"
      },
      "user_guid": {
        "type": "string",
        "description": "User guid"
      }
    },
    "required": [],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

Standard tool result payload.

| Name                         | Type      | Required | Default | Details                                        |
| ---------------------------- | --------- | -------- | ------- | ---------------------------------------------- |
| `result.data`                | `array`   | 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": "array",
        "description": "Provider response payload.",
        "items": {
          "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)
