POST
/
api
/
v1
/
verify
/
get_user_verification_url
/
cURL
curl --request POST \
  --url https://api.pearcheck.com/api/v1/verify/get_user_verification_url/ \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --data '{
  "verification_type": "ID",
  "send_to_email": false,
  "email_address": "jsmith@example.com",
  "first_name": "<string>",
  "middle_name": "<string>",
  "last_name": "<string>",
  "date_of_birth": "<string>",
  "phone_number": "<string>"
}'
{
  "data": {
    "batch_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "verification_url": "<string>"
  },
  "status": 123
}

Authorizations

X-API-KEY
string
header
required

Body

Response

200
application/json

Successful Operation

The response is of type object.