Admin api stores
Notifies Register frontend to start a flow of registering new customer with specified token
Authorization
bearerAuth AuthorizationBearer <token>
In: header
Path Parameters
storeId*integer
Id of a physical store. The id is required when retailer want to make a call to specified store.
checkInDeviceId*integer
Request Body
application/json
token*string
A string token to start frontend registration flow
tokenType*string
session token type
Default
"SESSION_ID"Value in
"SESSION_ID" | "NONE"Response Body
application/json
curl -X POST "https://oasis-api.public.sandbox.oasis.aifi.com/api/admin/v2/stores/0/check-in/0/remote-register" \ -H "Content-Type: application/json" \ -d '{ "token": "string", "tokenType": "SESSION_ID" }'Empty
Empty
{
"message": "Invalid request body",
"type": "E_INVALID_BODY",
"errors": [
{
"error": "\"email\" is required",
"rule": "any.required",
"field": "\"email\""
}
]
}How is this guide?