Skip to content

Request verification code

Request

Request that an account verification code be sent to the provided email address, if it belongs to a registered user.

Security
SessionKey(Required scopes: customeradministrator)
Bodyapplication/json
emailstring

Email address to which a verification request code will be sent.

curl -i -X POST \
  https://docs.ticketingevents.com/_mock/openapi/verifications \
  -H 'Content-Type: application/json' \
  -H 'X-API-Key: YOUR_API_KEY_HERE' \
  -d '{
    "email": "marvin.milk@usmc.gov"
  }'

Responses

An account verification code was generated and sent to the provided email address, if it belongs to a registered user.

Bodyapplication/json
selfstring, (uri)

URI of the verification request resource

emailstring

Email addresss to which the account verification code was sent.

statusstring

Current status of the account verification request.

Enum:"Pending""Completed""Expired"
Response
{ "self": "/verifications/16485226592997", "email": "marvin.milk@usmc.gov", "status": "Pending" }