Retrieve a list of sequences for a user
GET
/automation/v4/sequences/ 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 ;
results:PublicSequenceLiteResponse [];
total: number;
}
paging?:
results:
total: number;
}
default */*
An error occurred.
interface Error {
category: string;
context?: { };
correlationId: string;
errors?:ErrorDetail [];
links?: { };
message: string;
subCategory?: string;
}
category: string;
context?: { };
correlationId: string;
errors?:
links?: { };
message: string;
subCategory?: string;
}