Skip to main content
POST
/
v1
/
verification_codes
/
verify
Verify
curl --request POST \
  --url https://{defaultHost}/v1/verification_codes/verify \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "verification_code": {
    "code": 487285,
    "email": "[email protected]"
  }
}
'
{
  "id": "949912fd-c861-4524-8a4e-93e794e6d73d",
  "object": "verification_code",
  "email": "[email protected]",
  "verified": true,
  "verified_at": 1767909789,
  "created_at": 1767909789,
  "updated_at": 1767909789
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
verification_code
object

Response

200 - application/json

Success

id
string | null

The UUID of the specific object.

object
string

A string describing the object type returned.

email
string

The email the verification code was sent to.

verified
boolean

Whether or not this verification code has been verified.

verified_at
integer | null

Date when the verification code was verified.

created_at
integer | null

Time at which the object was created. Measured in seconds since the Unix epoch.

updated_at
integer | null

Time at which the object was last updated. Measured in seconds since the Unix epoch.