GET
/rebranding/summary
curl \
--request GET 'https://api.your-domain.com/api/rebranding/summary' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"code": 42,
"message": "string",
"data": {
"total": 4,
"distributors": 2,
"resellers": 2,
"customers": 0
}
}
Response examples (401)
{
"code": 401,
"message": "invalid token",
"data": {}
}