Bem-vindo ao nosso novo hub de docs! Central de Ajuda + Docs para Desenvolvedores em um só lugar.
curl --request GET \
--url https://app.alana.shopping/api/workspace/{workspaceId}/brands \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "brand_1a2b3c",
"workspace_id": "ws_1a2b3c4d",
"name": "Premium Goods",
"slug": "premium-goods",
"logo_url": "https://cdn.alana.shopping/brands/brand_1a2b3c/logo.png",
"description": "High-end product line",
"created_at": "2024-01-15T10:30:00Z",
"updated_at": "2024-02-10T14:22:00Z"
}
],
"pagination": {
"limit": 50,
"has_more": false
}
}curl --request GET \
--url https://app.alana.shopping/api/workspace/{workspaceId}/brands \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "brand_1a2b3c",
"workspace_id": "ws_1a2b3c4d",
"name": "Premium Goods",
"slug": "premium-goods",
"logo_url": "https://cdn.alana.shopping/brands/brand_1a2b3c/logo.png",
"description": "High-end product line",
"created_at": "2024-01-15T10:30:00Z",
"updated_at": "2024-02-10T14:22:00Z"
}
],
"pagination": {
"limit": 50,
"has_more": false
}
}Bearer token authentication via Auth0. Users authenticate through Auth0 Universal Login. Include the access token in the Authorization header: Authorization: Bearer <token>
The workspace ID
^ws_[a-z0-9]+$