curl --request GET \
--url https://dev.seqhq.io/api/products \
--header 'Authorization: <authorization>'{
"items": [
{
"id": "994d23f7-47b6-43ee-af6b-cd27181196b6",
"name": "Fixed priced product",
"label": "Fixed priced product - UK",
"createdAt": "2022-06-28T16:47:00Z",
"updatedAt": "2022-06-28T16:47:00Z"
}
],
"pagination": {
"after": "MDE4NDUyNjYtNmQ2NC03N2M4LTlhZGYtNDQ4N2Q5NGQxNDU3",
"before": "MDE4NDQyMWUtYTljYy03MTFiLWFmOTMtYmYwNTExZDRkODMz",
"totalResultSize": 10
}
}List all Products
curl --request GET \
--url https://dev.seqhq.io/api/products \
--header 'Authorization: <authorization>'{
"items": [
{
"id": "994d23f7-47b6-43ee-af6b-cd27181196b6",
"name": "Fixed priced product",
"label": "Fixed priced product - UK",
"createdAt": "2022-06-28T16:47:00Z",
"updatedAt": "2022-06-28T16:47:00Z"
}
],
"pagination": {
"after": "MDE4NDUyNjYtNmQ2NC03N2M4LTlhZGYtNDQ4N2Q5NGQxNDU3",
"before": "MDE4NDQyMWUtYTljYy03MTFiLWFmOTMtYmYwNTExZDRkODMz",
"totalResultSize": 10
}
}Your API credentials. Eg. Basic {credentials}.
Use this header to select an API version
2024-07-30 Filter by name
Maximum number of objects to return per-page. Must be between 1 and 100 (inclusive).
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.
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.
OK
Products
Show child attributes
[
{
"id": "994d23f7-47b6-43ee-af6b-cd27181196b6",
"name": "Fixed priced product",
"label": "Fixed priced product - UK",
"createdAt": "2022-06-28T16:47:00Z",
"updatedAt": "2022-06-28T16:47:00Z"
}
]Results pagination
Show child attributes
{
"after": "MDE4NDUyNjYtNmQ2NC03N2M4LTlhZGYtNDQ4N2Q5NGQxNDU3",
"before": "MDE4NDQyMWUtYTljYy03MTFiLWFmOTMtYmYwNTExZDRkODMz",
"totalResultSize": 10
}