Get a session

Returns the current state of a session — its status, when it started, the configuration in force, and the customer_metadata it was created with.

Required scope: intelligence:read

Path Parameters
  • session_id
    Type: string · Session Id
    required

    The session identifier returned when the session was created.

Responses
  • application/json
  • application/json
  • application/json
  • application/json
Request Example for get/sessions/{session_id}
curl 'https://api.simwood.com/intelligence/v1/sessions/{session_id}' \
  --header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
  "session_id": "string",
  "status": "string",
  "started_at": "string",
  "call_id": "string",
  "configuration_id": "string",
  "customer_metadata": {
    "additionalProperty": "anything"
  }
}