List collections
Gets a list of collections.
GET https://api.cogfy.com/collections
Query params
pageNumber
: The page number to retrieve. Starts at 0. Defaults to 0.pageSize
: The number of results per page. Defaults to 10.
Response
Example JSON response:
{
"data": [
{
"id": "a42666d9-98b1-43d4-a997-4e0543a3d824",
"name": "My collection"
},
{
"id": "831d276b-11fd-49b7-8eee-dafe88407697",
"name": "My other collection"
}
],
"pageNumber": 0,
"pageSize": 10,
"totalSize": 2
}