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

# Apollo: Create Call Record

> ## Endpoint essentials **API key access:** `Master API key` **OAuth scopes:** `phone_call_write` **Credit usage:** `0 credits` — [Learn more about API pricing.

## Endpoint essentials **API key access:** `Master API key` **OAuth scopes:** `phone_call_write` **Credit usage:** `0 credits` — \[Learn more about API pricing.

<Info>
  Tool ID: `apollo_create_call_record`
</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(
  'apollo_create_call_record',
  {
    "contact_id": "contact_123",
    "user_id": "user_123"
  },
);

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

### CLI

```bash theme={null}
deepline tools execute apollo_create_call_record --input '{
  "contact_id": "contact_123",
  "user_id": "user_123"
}' --json
```

## Example response

The static output schema is not detailed enough to generate a reliable example. Use `deepline tools get apollo_create_call_record --json` for the complete live contract.

## Input reference

Create a call record in Apollo for logging external calls. Cannot initiate actual calls. Requires master API key.

| Name                    | Type      | Required | Default | Details                                                              |
| ----------------------- | --------- | -------- | ------- | -------------------------------------------------------------------- |
| `payload.contact_id`    | `string`  | Yes      | —       | Apollo contact ID the call was with.                                 |
| `payload.user_id`       | `string`  | Yes      | —       | Apollo user ID who made/received the call.                           |
| `payload.disposition`   | `string`  | No       | —       | Call disposition (e.g., "Connected", "Left Voicemail", "No Answer"). |
| `payload.duration`      | `integer` | No       | —       | Call duration in seconds. Minimum: 0.                                |
| `payload.recording_url` | `string`  | No       | —       | URL to the call recording.                                           |
| `payload.note`          | `string`  | No       | —       | Notes about the call.                                                |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Create a call record in Apollo for logging external calls. Cannot initiate actual calls. Requires master API key.",
    "properties": {
      "contact_id": {
        "type": "string",
        "description": "Apollo contact ID the call was with."
      },
      "user_id": {
        "type": "string",
        "description": "Apollo user ID who made/received the call."
      },
      "disposition": {
        "type": "string",
        "description": "Call disposition (e.g., \"Connected\", \"Left Voicemail\", \"No Answer\")."
      },
      "duration": {
        "type": "integer",
        "description": "Call duration in seconds.",
        "minimum": 0
      },
      "recording_url": {
        "type": "string",
        "description": "URL to the call recording."
      },
      "note": {
        "type": "string",
        "description": "Notes about the call."
      }
    },
    "required": [
      "contact_id",
      "user_id"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

Apollo create call record result.

| Name          | Type     | Required | Default | Details                                        |
| ------------- | -------- | -------- | ------- | ---------------------------------------------- |
| `result.data` | `record` | Yes      | —       | Payload with the created `phone_call` object.  |
| `result.meta` | `record` | No       | —       | Additional response metadata (status, paging). |

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

  ### Output JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Apollo create call record result.",
    "properties": {
      "data": {
        "type": [
          "object",
          "null"
        ],
        "description": "Payload with the created `phone_call` object.",
        "additionalProperties": {}
      },
      "meta": {
        "type": "object",
        "description": "Additional response metadata (status, paging).",
        "additionalProperties": {}
      }
    },
    "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

* [Apollo provider guide](/docs/providers/apollo/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)
