GET /brands
curl \
-X GET https://api.cosmily.com/api/v1/brands \
-H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"data": [
{
"id": 111,
"alias": "pasjel",
"title": "PasJel",
"product_count": 243,
"created_at": "2021-10-04T13:24:22.000Z",
"updated_at": "2021-11-13T20:23:18.000Z",
"owner": {
"id": 222,
"username": "pasjel_cosmily",
"user_type": "brand",
"last_active": "2022--2-09T21:22:23.000Z"
}
}
],
"links": {
"first": "/api/v1/brands?page=1",
"last": "/api/v1/brands?page=1"
}
}
Response examples (200)
{
"data": [
{
"id": 111,
"alias": "pasjel",
"owner": {
"id": 222,
"username": "pasjel_cosmily",
"user_type": "brand",
"last_active": "2022--2-09T21:22:23.000Z"
},
"title": "PasJel",
"created_at": "2021-10-04T13:24:22.000Z",
"updated_at": "2021-11-13T20:23:18.000Z",
"product_count": 243
}
],
"links": {
"last": "/api/v1/brands?page=1",
"first": "/api/v1/brands?page=1"
}
}