Store Management
Authorizations
Query parameters
idstringRequired
The UUID of the store to retrieve
Header parameters
X-API-KEYstringRequired
Partner API Key
X-API-SECRETstringRequired
Partner API Secret
Responses
200
The store has been successfully retrieved.
application/json
400
Invalid input format.
401
Unauthorized
404
Store not found.
get
/partners/storeGET /partners/store?id=text HTTP/1.1
Host: api.fullwhere.com
X-API-KEY: text
X-API-SECRET: text
Accept: */*
{
"id": "text",
"createdAt": "2025-10-28T17:51:10.710Z",
"updatedAt": "2025-10-28T17:51:10.710Z",
"name": "text",
"description": "text",
"brandId": "text",
"brandName": "text",
"groups": [
{
"id": "text",
"createdAt": "2025-10-28T17:51:10.710Z",
"updatedAt": "2025-10-28T17:51:10.710Z",
"name": "text",
"description": "text",
"internalCode": "text",
"color": "text"
}
],
"supportEmails": [
{
"id": "text",
"createdAt": "2025-10-28T17:51:10.710Z",
"updatedAt": "2025-10-28T17:51:10.710Z",
"email": "text",
"default": true
}
],
"internalCode": "text",
"postalAddress": {
"country": "AF",
"streetName": "text",
"addressLine": "text",
"latitude": "text",
"longitude": "text",
"city": "text",
"zipCode": "text"
},
"newReviewUris": {
"google": "text",
"tripadvisor": "text"
}
}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
1brandsstring[] | nullableOptional
Brand IDs to filter stores
Responses
201
The stores have been successfully listed.
application/json
400
Invalid input format.
401
Unauthorized
post
/partners/store/listPOST /partners/store/list HTTP/1.1
Host: api.fullwhere.com
X-API-KEY: text
X-API-SECRET: text
Content-Type: application/json
Accept: */*
Content-Length: 39
{
"limit": 10,
"page": 1,
"brands": [
"text"
]
}{
"items": [
{
"id": "text",
"createdAt": "2025-10-28T17:51:10.710Z",
"updatedAt": "2025-10-28T17:51:10.710Z",
"name": "text",
"description": "text",
"brandId": "text",
"brandName": "text",
"groups": [
{
"id": "text",
"createdAt": "2025-10-28T17:51:10.710Z",
"updatedAt": "2025-10-28T17:51:10.710Z",
"name": "text",
"description": "text",
"internalCode": "text",
"color": "text"
}
],
"supportEmails": [
{
"id": "text",
"createdAt": "2025-10-28T17:51:10.710Z",
"updatedAt": "2025-10-28T17:51:10.710Z",
"email": "text",
"default": true
}
],
"internalCode": "text",
"postalAddress": {
"country": "AF",
"streetName": "text",
"addressLine": "text",
"latitude": "text",
"longitude": "text",
"city": "text",
"zipCode": "text"
},
"newReviewUris": {
"google": "text",
"tripadvisor": "text"
}
}
],
"meta": {
"itemCount": 1,
"totalItems": 1,
"itemsPerPage": 1,
"totalPages": 1,
"currentPage": 1
}
}Last updated