Run in Apidog
A call to login a user into storeharmony app and retrieve session tokens and API keys to use to access resources within storeharmony network. Requires developer API key
Request Body Params application/json
{
"username" : "string" ,
"password" : "string" ,
"platformId" : "string"
}
Request Code Samples
curl --location --request POST 'https://gateway.storeharmony.com/cloudapi/app/access/' \
--header 'Content-Type: application/json' \
--data-raw '{
"username": "string",
"password": "string",
"platformId": "string"
}'
Responses
{
"accountId" : "string" ,
"accessToken" : "string" ,
"webRedirectUrl" : "string" ,
"tokens" : [
{
"storeId" : "string" ,
"sessiontoken" : "string" ,
"role" : "string"
}
] ,
"webRedirectUrlExpire" : "2019-08-24T14:15:22Z"
}
Modified at 2025-03-27 14:31:04