v2

latestOpenAPI 3.0.02026-07-26365590.3 KB
Sequences

Get a sequence by ID

Returns the details of a specific sequence. Returns 404 if the sequence is in a workspace outside the API key scope.

get/v1/sequences/{id}

Path parameters

idstring required

Response

Sequence details

idstring required

Unique identifier of the sequence

namestring required

Name of the sequence

organizationMembershipIdstring required

OrganizationMembership ID of the creator

createdAtstring date-time required

Date when the sequence was created

updatedAtstring date-time required

Date when the sequence was last updated

contactCountnumber

Number of contacts in the sequence

Example response

{
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "name": "My Sales Sequence",
  "organizationMembershipId": "123e4567-e89b-12d3-a456-426614174001",
  "createdAt": "2024-01-15T10:30:00.000Z",
  "updatedAt": "2024-01-15T10:30:00.000Z",
  "contactCount": 150,
  "assignedTo": [
    {
      "organizationMembershipId": "123e4567-e89b-12d3-a456-426614174000",
      "email": "john.doe@example.com"
    }
  ]
}