Search + K

Command Palette

Search for a command to run...

Sign In

Retrieve a list of sequences for a user

GET /automation/v4/sequences/
Copy endpoint
https://api.hubapi.com

Retrieve a list of sequences that belong to a specific user.

Parameters

query Query Parameters

Name Type
userId required

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

string
after

A paging cursor token used to retrieve the next set of results.

string
limit

The maximum number of sequences to return.

number
name

A parameter to filter sequences by their name.

string

Responses

200 application/json

successful operation

interface CollectionResponseWithTotalPublicSequenceLiteResponseForwardPaging {
paging?: ForwardPaging
interface ForwardPaging {
next?: NextPage35;
}
;
results: PublicSequenceLiteResponse
interface PublicSequenceLiteResponse {
createdAt: string;
folderId?: string;
id: string;
name: string;
updatedAt: string;
userId: string;
}
[]
;
total: number;
}
default */*

An error occurred.

interface Error {
category: string;
context?: { };
correlationId: string;
errors?: ErrorDetail
interface ErrorDetail {
code?: string;
context?: { };
in?: string;
message: string;
subCategory?: string;
}
[]
;
links?: { };
message: string;
subCategory?: string;
}