Catalogs
List Catalogs
Catalogs
List Catalogs
GET
/
api
/
v1
/
catalogs
curl --request GET \
--url https://app.flowglad.com/api/v1/catalogs \
--header 'Authorization: <api-key>'
{
"data": [
{
"id": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"livemode": true,
"organizationId": "<string>",
"isDefault": true,
"name": "<string>"
}
],
"currentCursor": "<string>",
"nextCursor": "<string>",
"hasMore": true,
"total": 123
}
Authorizations
Response
200
application/json
Successful response
curl --request GET \
--url https://app.flowglad.com/api/v1/catalogs \
--header 'Authorization: <api-key>'
{
"data": [
{
"id": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"livemode": true,
"organizationId": "<string>",
"isDefault": true,
"name": "<string>"
}
],
"currentCursor": "<string>",
"nextCursor": "<string>",
"hasMore": true,
"total": 123
}