Skip to main content
GET
/
sub-brands
Get sub-brands
curl --request GET \
  --url https://api.sibipro.com/offers/sub-brands \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "9OYmJkDZ8ijU4c",
    "name": "SIBI Home Warranty"
  },
  {
    "id": "vgYOuUeTC8mJRl",
    "name": "SIBI Expanded Warranty"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Sub-brands fetched successfully

id
string
required

Unique identifier for the sub-brand

name
string
required

Name of the sub-brand

Example:
[
  {
    "id": "9OYmJkDZ8ijU4c",
    "name": "SIBI Home Warranty"
  },
  {
    "id": "vgYOuUeTC8mJRl",
    "name": "SIBI Expanded Warranty"
  }
]