Brand Management
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
400
Invalid input format.
401
Unauthorized
404
Brand not found.
get
/partners/brandGET /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
}
]
}Authorizations
Header parameters
X-API-KEYstringRequired
Partner API Key
X-API-SECRETstringRequired
Partner API Secret
Body
limitnumber · min: 1 · max: 100OptionalDefault:
Pagination limit
10pagenumber · min: 1OptionalDefault:
Page to retrieve
1Responses
201
The brands have been successfully listed.
application/json
400
Invalid input format.
401
Unauthorized
post
/partners/brand/listPOST /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