Open Context Protocol is live! 🚀 Read the launch post

callsInfo

Returns information about a Call.

GET /calls.info HTTP/1.1

Parameters

{
  "token": {
    "description": "Authentication token. Requires scope: `calls:read`",
    "required": true,
    "location": "header",
    "type": "string"
  },
  "id": {
    "description": "`id` of the Call returned by the [`calls.add`](/methods/calls.add) method.",
    "required": true,
    "location": "query",
    "type": "string"
  }
}

Response Schema

{
  "additionalProperties": true,
  "description": "This method either only returns a brief _OK_ response or a verbose schema is not available for this method.",
  "properties": {
    "ok": {
      "enum": [
        true
      ],
      "title": "default success response",
      "type": "boolean"
    }
  },
  "required": [
    "ok"
  ],
  "title": "Default success template",
  "type": "object"
}