Skip to main content
GET
/
v1
/
verify
/
{app_id}
/
verifications
List verification requests
curl --request GET \
  --url https://{defaultHost}/v1/verify/{app_id}/verifications \
  --header 'Authorization: Bearer <token>' \
  --header 'X-Authorization: <api-key>'
{
  "verifications": [
    {
      "id": "<string>",
      "app_id": "<string>",
      "app_user_id": "<string>",
      "to_app_user_id": "<string>",
      "status": "pending",
      "channel": "sms",
      "reason": "<string>",
      "timeout": 123,
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z",
      "identifier": "<string>",
      "recipient": {
        "id": "<string>",
        "name": "<string>",
        "email": "jsmith@example.com",
        "phone": "<string>"
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

API Secret token

X-Authorization
string
header
required

User Access token

Path Parameters

app_id
string
required

Application ID

Response

successful

verifications
object[]