Store Management

Get a store by ID

get
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
get
/partners/store
GET /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"
  }
}

List stores

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
brandsstring[] | nullableOptional

Brand IDs to filter stores

Responses
201

The stores have been successfully listed.

application/json
post
/partners/store/list
POST /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