Authorizations
Access token
Body
application/json
Commerce Engine is now in beta. We're working hard to make it better for you.
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>"
]
}
}
The Check Verification Status API allows to verify the status of email and phone number verification for a specific user. Upon a successful request, the API responds with the verification status of the provided email and phone number. If the user is not found or thereโs an issue with the request, an error response is returned with an appropriate message.
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?