v1

latestSwagger 2.0BeezUP2026-07-13254876845.8 KB
Customer - Stores

Get store's information

get/v2/user/customer/stores/{storeId}

Path parameters

storeIdstring guid required

Your store identifier

Headers

If-None-Matchstring

ETag value to identify the last known version of requested resource.
To avoid useless exchange, we recommend you to indicate the ETag you previously got from this operation.
If the ETag value does not match the response will be 200 to give you a new content, otherwise the response will be: 304 Not Modified, without any content.
For more details go to this link: http://tools.ietf.org/html/rfc7232#section-2.3

Response

The store information

storeIdstring guid required

The store identifier

namestring required

The store name. Must be unique.

urlstring required

The url of your store

countryIsoCodeAlpha3string required

The country iso code alpha 3 based on the list of values /user/lov/StoreCountryWithInternational

currencyCodestring required

The currency code <a href="https://en.wikipedia.org/wiki/ISO_4217">(ISO 4217)</a>

sectorsStoreSector[] required

The store's sectors based on the list of values /user/lov/ParamSector

userRole'Owner' | 'User' required

Indicates the role can have a user on a store.

  • Owner: Indicates that you are the owner of this store
  • User: Indicates that you are a simple user on this store
status'Active' | 'SystemBlocked' | 'UserBlocked' required

The store status

  • Active: When the store is active
  • SystemBlocked: When the store is blocked by the system
  • UserBlocked: When the store is blocked on GO not on the system
ownerUserIdstring guid required

The user id of the owner of the store

offerIdinteger required

The offer id based on /offers. Not a free offer of course.

offerNamestring required

The offer Name

shareCountinteger required

The share count related to this store

creationUtcDatestring date-time required

The creation date of the store

goVersioninteger required

The version of GO to use

isTestboolean required

Is the store a test or a production store

Example response

{
  "storeId": "64f43358-63a1-47f7-97ec-0301fc39956b",
  "name": "My Store",
  "url": "http://www.mystore.com",
  "countryIsoCodeAlpha3": "DEU",
  "currencyCode": "EUR",
  "sectors": [
    "ANIMALERIE",
    "AUTOMOTO"
  ],
  "userRole": "User",
  "status": "Active",
  "ownerUserId": "00000000-0000-0000-0000-000000000000",
  "offerName": "Premium",
  "creationUtcDate": "2017-04-01T22:30:00Z",
  "links": {
    "self": {
      "href": "/v2/user/customer/stores/51afae05-277e-4902-8b17-5a811a23a2c6",
      "method": "GET"
    },
    "deleteStore": {
      "href": "/v2/user/customer/stores/51afae05-277e-4902-8b17-5a811a23a2c6",
      "method": "DELETE"
    },
    "updateStore": {
      "href": "/v2/user/customer/stores/51afae05-277e-4902-8b17-5a811a23a2c6",
      "method": "PATCH"
    },
    "shares": {
      "href": "/v2/user/customer/stores/51afae05-277e-4902-8b17-5a811a23a2c6/shares",
      "method": "GET"
    },
    "share": {
      "href": "/v2/user/customer/stores/51afae05-277e-4902-8b17-5a811a23a2c6/shares",
      "method": "POST",
      "parameters": {
        "email": {
          "type": "string",
          "in": "body",
          "required": true
        }
      }
    }
  }
}