ApiV1StoreAuthRegister
Register a new customer with email and password
Register a new customer with email and password. If a customer with this email already exists (e.g., from a chat channel), the password will be linked to the existing account.
Request Body
application/json
name*string
Length
1 <= length <= 200email*string
Format
emailpassword*string
Length
8 <= length <= 128phone?string
Response Body
application/json
curl -X POST "https://api-pub.ezcart.io/v1/store/auth/register" \ -H "Content-Type: application/json" \ -d '{ "name": "string", "email": "[email protected]", "password": "stringst" }'{
"customerId": "string",
"tokens": {
"accessToken": "string",
"refreshToken": "string",
"expiresIn": 0
}
}