Get All Brands API
This API endpoint retrieves all brands in the system. Requires authentication. On success, returns a list of all brands with their details.
- Method: GET
- Endpoint:
/api/api-services/v1/brand-service/get-all-brands
- Returns: List of all brands
Get All Brands
GET https://app.brand2social.com/api/api-services/v1/brand-service/get-all-brands
Header | Type | Required | Description |
---|---|---|---|
Authorization | string | Yes | Bearer token |
curl --location 'https://app.brand2social.com/api/api-services/v1/brand-service/get-all-brands' \
--header 'Authorization: Bearer B2S_dummyToken'
Response
{
"status": "SUCCESS",
"http_code": 200,
"message": "Fetched all brands",
"data": [
{
"brand_id": "brand_123",
"brand_name": "DemoBrand",
"timezone": "Asia/Kolkata"
}
]
}