Skip to main content
GET
/
v1
/
sequences
/
{id}
cURL
curl --request GET \
  --url https://client-api.salesfinity.co/v1/sequences/{id} \
  --header 'x-api-key: <api-key>'
{
  "data": {
    "id": "<string>",
    "name": "<string>",
    "total_calls": 123,
    "last_used_at": "2023-11-07T05:31:56Z",
    "first_used_at": "2023-11-07T05:31:56Z"
  }
}
Retrieves a specific sequence by its ID with detailed statistics.

Path Parameters

  • id (required, string): The sequence ID

Response

Returns a JSON object containing the sequence details.
{
  "data": {
    "id": "seq_12345",
    "name": "Q1 Outbound Campaign",
    "last_used_at": "2024-02-01T15:30:00.000Z",
    "first_used_at": "2024-01-05T09:00:00.000Z",
    "total_calls": 1250
  }
}

Error Responses

  • 404 Not Found: Sequence with the specified ID does not exist

Authorizations

x-api-key
string
header
required

Path Parameters

id
string
required

Sequence ID

Response

Sequence retrieved successfully

data
object