Allows a user to register a new customer with a specified retail store.
Request
Body Params application/json
{
"username": "john_doe",
"password": "securePassword123",
"email": "john.doe@example.com",
"mobile": "+1234567890",
"address": "123 Main St, Anytown",
"lastname": "Doe",
"firstname": "John",
"lga": "Anytown LGA",
"lgaCode": "LGA123",
"state": "California",
"stateCode": "CA",
"country": "United States",
"countryCode": "US",
"zipcode": "90210",
"birthday": 15,
"birthmonth": 8,
"birthyear": 1990
}
Request Code Samples
curl --location --request POST 'https://gateway.storeharmony.com/cloudapi/estore//auth/register' \
--header 'sessiontoken;' \
--header 'Content-Type: application/json' \
--data-raw '{
"username": "john_doe",
"password": "securePassword123",
"email": "john.doe@example.com",
"mobile": "+1234567890",
"address": "123 Main St, Anytown",
"lastname": "Doe",
"firstname": "John",
"lga": "Anytown LGA",
"lgaCode": "LGA123",
"state": "California",
"stateCode": "CA",
"country": "United States",
"countryCode": "US",
"zipcode": "90210",
"birthday": 15,
"birthmonth": 8,
"birthyear": 1990
}'
Responses
*/*
Customer registered successfully
Modified at 2025-03-27 14:31:04