Skip to main content

Account Validate

This API is used to validate the account.

Request Body required
  • email string

    The email address of the customer.

  • mobile object
  • code string required

    Unique numeric country code

  • number string required

    The valid phone number of the customer.

Responses

Success response


{
"statusCode": 200,
"message": "Success"
}
POST /ecommerce/v1/auth/account/validate

Authorization

type: oauth2flow: clientCredentialsscopes: user:read,user:write

Request

Bearer Token
Body required
{
"email": "string",
"mobile": {
"code": "string",
"number": "string"
}
}
curl -L -X POST 'https://posbytz.github.io/ecommerce/v1/auth/account/validate' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>' \
--data-raw '{
"email": "string",
"mobile": {
"code": "string",
"number": "string"
}
}'