Skip to main content
GET
/
calls
/
{callId}
Get a call
curl --request GET \
  --url https://api.triplesession.com/v2/calls/{callId} \
  --header 'Authorization: Bearer <token>'
{
  "call": {
    "id": "<string>",
    "name": "<string>",
    "owner_id": "<string>",
    "score": 123,
    "score_breakdown": {},
    "scorecard": "<string>",
    "scorecard_id": "<string>",
    "created_at": "2023-11-07T05:31:56Z",
    "duration_in_minutes": 123,
    "source": "<string>",
    "evaluatee_user_id": "<string>",
    "evaluatee_user_name": "<string>",
    "evaluatee_email": "<string>",
    "participants": [
      "<string>"
    ],
    "attendees": [
      "<string>"
    ],
    "crm_objects": [
      {
        "id": "<string>",
        "name": "<string>",
        "url": "<string>",
        "type": "<string>"
      }
    ]
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.triplesession.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Use a public API key with the endpoint's required scope.

Path Parameters

callId
string<uuid>
required

Call ID.

Response

Call report details.

call
object
required