v1

latestOpenAPI 3.0.32026-07-14490228.1 KB

Get Sequence By ID

This endpoint retrieves a sequence owned by the client.

get/sequences/{id}

Path parameters

idinteger required

The ID used to identify the sequence.

Response

200

Example response

{
  "data": {
    "id": 1,
    "name": "Test Sequence 1",
    "status": "active",
    "number_id": 1,
    "caller_number_id": 1,
    "blocks": [
      {
        "id": 1,
        "messaging_type": "speak",
        "sequence_id": 1,
        "params": {
          "voice": "alice",
          "message": "Please record your message",
          "language": "en-US"
        }
      }
    ]
  }
}