Retrieve Brand ID

This API allows the user to retrieve the Brand ID.

👍

Note

For detailed information about our APIs and for hands-on testing, refer documentation in API overview and step-by-step guide on making your first API call in Make your first API call .

API endpoint example

https://eu.api.capillarytech.com/api_gateway/rewards/core/v1/brand/getAll

Prerequisites

  • Authentication: Basic or OAuth authentication

  • Default Access group

Resource Information

URI/api_gateway/rewards/core/v1/brand/getAll
HTTP methodPOST
Pagination supported?NA
Rate limitNA
Batch supportNA

Request Body Parameter

Parameter NameTypeDescription
orgIds*intUnique ID of the org.
{
    "orgIds": [
        100458
    ]
}

Response Body Parameter

ParameterDescription
statusContains the status of the response
successIndicates if the request was successful
codeResponse code indicating the status
messageMessage describing the status
brandListList of brands fetched
idUnique brand identifier. Ex: 1
brandName of the Brand
enabledIndicates if the brand is enabled or not
orgIdUnique ID of the org associated with the brand
{
    "status": {
        "success": true,
        "code": 3001,
        "message": "Brand fetched successfully"
    },
    "brandList": [
        {
            "id": 1,
            "brand": "BUKL",
            "enabled": true,
            "orgId": 100458
        }
    ]
}
Language
Authorization
Basic
base64
:
URL
Click Try It! to start a request and see the response here!