Commerce Engine is now in early preview. Please report any issues or feedback to support@commercengine.io
curl --request POST \
--url https://staging.api.commercengine.io/api/v1/{store_id}/storefront/auth/verified-email-phone \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"phone": [
"<string>"
],
"email": [
"<string>"
]
}
'{
"message": "<string>",
"success": true,
"content": {
"verified_phone": [
"<string>"
],
"verified_email": [
"<string>"
]
}
}Checks whether the userβs email and phone number have been verified.
curl --request POST \
--url https://staging.api.commercengine.io/api/v1/{store_id}/storefront/auth/verified-email-phone \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"phone": [
"<string>"
],
"email": [
"<string>"
]
}
'{
"message": "<string>",
"success": true,
"content": {
"verified_phone": [
"<string>"
],
"verified_email": [
"<string>"
]
}
}Access token
OK
A descriptive message confirming the success or failure of the operation.
Indicates whether the request was successful or failure (true for success, false for failure).
An object containing the response content.
Show child attributes
Was this page helpful?