Stores
Stores returned.
Full definition of a store, returned by list/get/create/update endpoints.
Unique identifier of the store.
Display name of the store.
Postal address of the store.
Longitude of the store in decimal value.
Latitude of the store in decimal value.
Optional altitude of the store in meters.
List of ISO 639 language codes available for this store.
GET /api/{tenantId}/admin/stores HTTP/1.1
Host: app.neostore.cloud
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
Stores returned.
[
{
"storeId": "text",
"displayName": null,
"address": null,
"longitude": 1,
"latitude": 1,
"altitude": null,
"availableLanguages": [
"text"
],
"advisors": [
{
"advisorId": "text",
"displayName": "text"
}
],
"additionalProperties": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}
]Request body to create a store.
Unique identifier of the store. Only alphanumeric characters, hyphens, underscores and dots are allowed.
Display name of the store.
Postal address of the store.
Longitude of the store in decimal value.
Latitude of the store in decimal value.
Optional altitude of the store in meters.
List of ISO 639 language codes available for this store.
Store created.
Full definition of a store, returned by list/get/create/update endpoints.
Unique identifier of the store.
Display name of the store.
Postal address of the store.
Longitude of the store in decimal value.
Latitude of the store in decimal value.
Optional altitude of the store in meters.
List of ISO 639 language codes available for this store.
Store identifier is invalid.
A store with this identifier already exists.
POST /api/{tenantId}/admin/stores HTTP/1.1
Host: app.neostore.cloud
Authorization: Bearer YOUR_OAUTH2_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 242
{
"storeId": "text",
"displayName": null,
"address": null,
"longitude": 1,
"latitude": 1,
"altitude": null,
"availableLanguages": [
"text"
],
"advisors": [
{
"advisorId": "text",
"displayName": "text"
}
],
"additionalProperties": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}{
"storeId": "text",
"displayName": null,
"address": null,
"longitude": 1,
"latitude": 1,
"altitude": null,
"availableLanguages": [
"text"
],
"advisors": [
{
"advisorId": "text",
"displayName": "text"
}
],
"additionalProperties": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}Store returned.
Full definition of a store, returned by list/get/create/update endpoints.
Unique identifier of the store.
Display name of the store.
Postal address of the store.
Longitude of the store in decimal value.
Latitude of the store in decimal value.
Optional altitude of the store in meters.
List of ISO 639 language codes available for this store.
Store not found.
GET /api/{tenantId}/admin/stores/{storeId} HTTP/1.1
Host: app.neostore.cloud
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
{
"storeId": "text",
"displayName": null,
"address": null,
"longitude": 1,
"latitude": 1,
"altitude": null,
"availableLanguages": [
"text"
],
"advisors": [
{
"advisorId": "text",
"displayName": "text"
}
],
"additionalProperties": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}Request body to update a store. Fully replaces the store's fields other than its identifier.
Display name of the store.
Postal address of the store.
Longitude of the store in decimal value.
Latitude of the store in decimal value.
Optional altitude of the store in meters.
List of ISO 639 language codes available for this store.
Store updated.
Full definition of a store, returned by list/get/create/update endpoints.
Unique identifier of the store.
Display name of the store.
Postal address of the store.
Longitude of the store in decimal value.
Latitude of the store in decimal value.
Optional altitude of the store in meters.
List of ISO 639 language codes available for this store.
Store not found.
PUT /api/{tenantId}/admin/stores/{storeId} HTTP/1.1
Host: app.neostore.cloud
Authorization: Bearer YOUR_OAUTH2_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 225
{
"displayName": null,
"address": null,
"longitude": 1,
"latitude": 1,
"altitude": null,
"availableLanguages": [
"text"
],
"advisors": [
{
"advisorId": "text",
"displayName": "text"
}
],
"additionalProperties": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}{
"storeId": "text",
"displayName": null,
"address": null,
"longitude": 1,
"latitude": 1,
"altitude": null,
"availableLanguages": [
"text"
],
"advisors": [
{
"advisorId": "text",
"displayName": "text"
}
],
"additionalProperties": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}Store deleted.
No content
Store not found.
DELETE /api/{tenantId}/admin/stores/{storeId} HTTP/1.1
Host: app.neostore.cloud
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
No content
Last updated

