v1

latestSwagger 2.0BeezUP2026-07-13254876845.8 KB
Customer - Stores

Create a new store

post/v2/user/customer/stores

Request body

idstring guid

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

sectorsStoreSector[] required

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

Example request

{
  "id": "64f43358-63a1-47f7-97ec-0301fc39956b",
  "name": "My Store",
  "url": "http://www.mystore.com",
  "countryIsoCodeAlpha3": "DEU",
  "sectors": [
    "ANIMALERIE",
    "AUTOMOTO"
  ]
}

Response

The store has been created successfully. The http header Location contains the new resource url. The body contains the link to the new resource.

labelstring

The label corresponding to the link. This label is automatically translated based on the Accept-Language http header.

docUrlstring uri

The documentation related to this operation.

descriptionstring

The description of the link

hrefstring required

Indicate the relative uri for this link

operationIdstring

The operationId to call.

method'GET' | 'POST' | 'PATCH' | 'DELETE' | 'PUT' | 'HEAD'

Indicate the http method to use on this link

parametersobject
urlTemplatedboolean

indicates whether the href is templated or not

allRequiredParamsProvidedboolean

indicates whether all required params have been provided

allOptionalParamsProvidedboolean

indicates whether all optionals params have been provided

Example response

{
  "href": "/v2/user/customer/stores/51afae05-277e-4902-8b17-5a811a23a2c6",
  "method": "GET"
}