Allows a user to log in to their account in a specified retail store.
Request
Body Params application/json
{
"username": "string",
"password": "string",
"refreshToken": "string"
}
Request Code Samples
curl --location --request POST 'https://gateway.storeharmony.com/cloudapi/app//crm/login' \
--header 'sessiontoken;' \
--header 'Content-Type: application/json' \
--data-raw '{
"username": "string",
"password": "string",
"refreshToken": "string"
}'
Responses
*/*
Customer logged in successfully
{
"success": true,
"accessToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."
}
Modified at 2025-03-27 14:31:04