GET /rebranding/products

Returns all products that support rebranding

Responses

  • 200 application/json

    Rebrandable products retrieved

    Hide response attributes Show response attributes object
    • code integer
    • message string
    • data object
      Hide data attribute Show data attribute object
      • products array[object]
        Hide products attributes Show products attributes object
        • id string
        • display_name string
        • type string

          Values are application or system.

        • created_at string(date-time)
  • 401 application/json

    Unauthorized - invalid or missing token

    Hide response attributes Show response attributes object
    • code integer
    • message string
    • data object | null
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": {}
}