curl --request GET \
--url https://api.hubapi.com/automation/sequences/2026-03/enrollments/contact/{contactId} \
--header 'Authorization: Bearer <token>'{
"enrolledAt": "2023-11-07T05:31:56Z",
"enrolledBy": "<string>",
"enrolledByEmail": "<string>",
"id": "<string>",
"sequenceId": "<string>",
"sequenceName": "<string>",
"toEmail": "<string>",
"updatedAt": "2023-11-07T05:31:56Z"
}Retrieve the sequence enrollment details for a specific contact in your HubSpot account. This endpoint provides information about the sequence a contact is enrolled in, including enrollment timestamps and the sequence’s name. It is useful for tracking the progress and status of a contact within a sequence.
curl --request GET \
--url https://api.hubapi.com/automation/sequences/2026-03/enrollments/contact/{contactId} \
--header 'Authorization: Bearer <token>'{
"enrolledAt": "2023-11-07T05:31:56Z",
"enrolledBy": "<string>",
"enrolledByEmail": "<string>",
"id": "<string>",
"sequenceId": "<string>",
"sequenceName": "<string>",
"toEmail": "<string>",
"updatedAt": "2023-11-07T05:31:56Z"
}Supported products
Required Scopes
The access token received from the authorization server in the OAuth 2.0 flow.
The unique identifier of the contact whose sequence enrollment details are being retrieved.
successful operation
The date and time when the contact was enrolled in the sequence.
The identifier of the user who enrolled the contact in the sequence.
The email address of the user who enrolled the contact in the sequence.
The unique identifier for the sequence enrollment.
The unique identifier of the sequence in which the contact is enrolled.
The name of the sequence in which the contact is enrolled.
The email address of the contact enrolled in the sequence.
The date and time when the sequence enrollment was last updated.
Was this page helpful?