calls_get
Retrieve detailed information about a specific call, including properties and associations such as contacts, companies, deals, or tickets, using the provided callId.
Instructions
Get details of a specific call
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| associations | No | ||
| callId | Yes | ||
| properties | No | 
Input Schema (JSON Schema)
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "additionalProperties": false,
  "properties": {
    "associations": {
      "items": {
        "enum": [
          "contacts",
          "companies",
          "deals",
          "tickets"
        ],
        "type": "string"
      },
      "type": "array"
    },
    "callId": {
      "type": "string"
    },
    "properties": {
      "items": {
        "type": "string"
      },
      "type": "array"
    }
  },
  "required": [
    "callId"
  ],
  "type": "object"
}