Returns all products that support rebranding
GET
/rebranding/products
curl \
--request GET 'https://api.your-domain.com/api/rebranding/products' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"code": 200,
"message": "string",
"data": {
"products": [
{
"id": "nethvoice",
"display_name": "NethVoice",
"type": "application",
"created_at": "2026-05-04T09:42:00Z"
}
]
}
}
Response examples (401)
{
"code": 401,
"message": "invalid token",
"data": {}
}