Brand Management

Get a brand by ID

get
Authorizations
Query parameters
idstringRequired

The UUID of the brand to retrieve

Header parameters
X-API-KEYstringRequired

Partner API Key

X-API-SECRETstringRequired

Partner API Secret

Responses
200

The brand has been successfully retrieved.

application/json
get
/partners/brand
GET /partners/brand?id=text HTTP/1.1
Host: api.fullwhere.com
X-API-KEY: text
X-API-SECRET: text
Accept: */*
{
  "id": "text",
  "createdAt": "2025-10-28T15:23:40.294Z",
  "updatedAt": "2025-10-28T15:23:40.294Z",
  "name": "text",
  "subdomain": "text",
  "logo": {
    "contentType": "text",
    "url": "text",
    "size": "text",
    "width": 1,
    "height": "text"
  },
  "supportEmails": [
    {
      "id": "text",
      "createdAt": "2025-10-28T15:23:40.294Z",
      "updatedAt": "2025-10-28T15:23:40.294Z",
      "email": "text",
      "default": true
    }
  ]
}

List brands

post
Authorizations
Header parameters
X-API-KEYstringRequired

Partner API Key

X-API-SECRETstringRequired

Partner API Secret

Body
limitnumber · min: 1 · max: 100Optional

Pagination limit

Default: 10
pagenumber · min: 1Optional

Page to retrieve

Default: 1
Responses
201

The brands have been successfully listed.

application/json
post
/partners/brand/list
POST /partners/brand/list HTTP/1.1
Host: api.fullwhere.com
X-API-KEY: text
X-API-SECRET: text
Content-Type: application/json
Accept: */*
Content-Length: 21

{
  "limit": 10,
  "page": 1
}
{
  "items": [
    {
      "id": "text",
      "createdAt": "2025-10-28T15:23:40.294Z",
      "updatedAt": "2025-10-28T15:23:40.294Z",
      "name": "text",
      "subdomain": "text",
      "logo": {
        "contentType": "text",
        "url": "text",
        "size": "text",
        "width": 1,
        "height": "text"
      },
      "supportEmails": [
        {
          "id": "text",
          "createdAt": "2025-10-28T15:23:40.294Z",
          "updatedAt": "2025-10-28T15:23:40.294Z",
          "email": "text",
          "default": true
        }
      ]
    }
  ],
  "meta": {
    "itemCount": 1,
    "totalItems": 1,
    "itemsPerPage": 1,
    "totalPages": 1,
    "currentPage": 1
  }
}

Last updated