Timetraveller
List all TimeTravellers
List all TimeTravellers
GET
/
time-travellers
Header
Query
curl --request GET \
--url https://eu.sequencehq.com/api/time-travellers \
--header 'Authorization: <authorization>'
{
"items": [
{
"billingScheduleId": "08a76ddb-230e-4700-a5e2-70f6edaf7d50",
"createdAt": "2022-10-07T14:12:08.826121Z",
"frozenTime": "2022-10-07T14:12:08.826121Z",
"id": "d1e093d6-e3cc-4ce6-80c2-6cf8837ace36",
"sequenceAccountId": "af9b5988-1d7b-45f6-a188-326df5e59b24",
"status": "READY",
"updatedAt": "2022-10-07T14:12:08.826121Z"
}
],
"pagination": {
"after": "MDE4NDUyNjYtNmQ2NC03N2M4LTlhZGYtNDQ4N2Q5NGQxNDU3",
"before": "MDE4NDQyMWUtYTljYy03MTFiLWFmOTMtYmYwNTExZDRkODMz",
"totalResultSize": 10
}
}
Headers
Authorizationrequired
string
Your API credentials. Eg. Basic {credentials}
.
Query Parameters
limit
integer
Maximum number of objects to return per-page.
after
string
Pagination offset. To page through items, omit this parameter to retrieve the first page, and then successively use the value you get from pagination.after
or pagination.before
to retrieve each page.
before
string
Pagination offset. To page through items, omit this parameter to retrieve the first page, and then successively use the value you get from pagination.next
or pagination.previous
to retrieve each page.
Response
200 - application/json
itemsrequired
object[]
paginationrequired
object
curl --request GET \
--url https://eu.sequencehq.com/api/time-travellers \
--header 'Authorization: <authorization>'
{
"items": [
{
"billingScheduleId": "08a76ddb-230e-4700-a5e2-70f6edaf7d50",
"createdAt": "2022-10-07T14:12:08.826121Z",
"frozenTime": "2022-10-07T14:12:08.826121Z",
"id": "d1e093d6-e3cc-4ce6-80c2-6cf8837ace36",
"sequenceAccountId": "af9b5988-1d7b-45f6-a188-326df5e59b24",
"status": "READY",
"updatedAt": "2022-10-07T14:12:08.826121Z"
}
],
"pagination": {
"after": "MDE4NDUyNjYtNmQ2NC03N2M4LTlhZGYtNDQ4N2Q5NGQxNDU3",
"before": "MDE4NDQyMWUtYTljYy03MTFiLWFmOTMtYmYwNTExZDRkODMz",
"totalResultSize": 10
}
}