Skip to main content
POST
/
auth
/
verified-email-phone
Check email/phone verification status
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>"
    ]
  }
}

Authorizations

Authorization
string
header
required

Access token

Body

application/json
phone
string[]

A string representing the phone number.

email
string[]

A string representing the email address.

Response

OK

message
string
required

A descriptive message confirming the success or failure of the operation.

success
boolean
required

Indicates whether the request was successful or failure (true for success, false for failure).

content
object
required

An object containing the response content.

โŒ˜I