Skip to main content
GET
/
automation
/
v4
/
sequences
/
{sequenceId}
Retrieve details for a sequence
curl --request GET \
  --url https://api.hubapi.com/automation/v4/sequences/{sequenceId} \
  --header 'Authorization: Bearer <token>'
{
  "createdAt": "2023-11-07T05:31:56Z",
  "dependencies": [
    {
      "createdAt": "2023-11-07T05:31:56Z",
      "dependencyType": "<string>",
      "id": "<string>",
      "reliesOnSequenceStepId": "<string>",
      "reliesOnStepOrder": 123,
      "requiredBySequenceStepId": "<string>",
      "requiredByStepOrder": 123,
      "updatedAt": "2023-11-07T05:31:56Z"
    }
  ],
  "id": "<string>",
  "name": "<string>",
  "steps": [
    {
      "actionType": "<string>",
      "createdAt": "2023-11-07T05:31:56Z",
      "delayMillis": 123,
      "id": "<string>",
      "stepOrder": 123,
      "updatedAt": "2023-11-07T05:31:56Z",
      "emailPattern": {
        "createdAt": "2023-11-07T05:31:56Z",
        "id": "<string>",
        "templateId": "<string>",
        "updatedAt": "2023-11-07T05:31:56Z",
        "threadEmailToStepOrder": 123
      },
      "taskPattern": {
        "createdAt": "2023-11-07T05:31:56Z",
        "id": "<string>",
        "taskPriority": "<string>",
        "taskType": "<string>",
        "updatedAt": "2023-11-07T05:31:56Z",
        "notes": "<string>",
        "queueId": 123,
        "subject": "<string>",
        "templateId": 123,
        "threadEmailToStepOrder": 123
      }
    }
  ],
  "updatedAt": "2023-11-07T05:31:56Z",
  "userId": "<string>",
  "folderId": "<string>",
  "settings": {
    "createdAt": "2023-11-07T05:31:56Z",
    "eligibleFollowUpDays": "<string>",
    "id": "<string>",
    "individualTaskRemindersEnabled": true,
    "sellingStrategy": "<string>",
    "sendWindowEndMinute": 123,
    "sendWindowStartMinute": 123,
    "taskReminderMinute": 123,
    "updatedAt": "2023-11-07T05:31:56Z",
    "unenrollmentSettings": {
      "emailSettings": {
        "criteria": "ALL",
        "sellingStrategy": "ACCOUNT_BASED"
      },
      "meetingSettings": {
        "criteria": "ALL",
        "sellingStrategy": "ACCOUNT_BASED"
      }
    }
  }
}

Supported products

Requires one of the following products or higher.
Marketing HubMarketing Hub -Free
Sales HubSales Hub -Professional
Service HubService Hub -Professional
Content HubContent Hub -Free
Data HubData Hub -Free

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

sequenceId
string
required

The ID of the sequence to retrieve details for.

Query Parameters

userId
string
required

The ID of the user with read access on the sequence being retrieved.

Response

successful operation

createdAt
string<date-time>
required

The date and time when the sequence was created.

dependencies
object[]
required
id
string
required

The unique identifier for the sequence.

name
string
required

The name of the sequence.

steps
object[]
required
updatedAt
string<date-time>
required

The date and time when the sequence was last updated.

userId
string
required

The ID of the user associated with the sequence.

folderId
string

The identifier of the folder containing the sequence.

settings
object
Last modified on December 16, 2025