curl --request GET \
--url https://{defaultHost}/v1/verify/{app_id}/autocomplete \
--header 'Authorization: Bearer <token>' \
--header 'X-Authorization: <api-key>'{
"results": [
{
"id": "<string>",
"type": "email",
"value": "<string>",
"verified": true,
"last_verified_at": "2023-11-07T05:31:56Z",
"user": {
"id": "<string>",
"name": "<string>",
"email": "jsmith@example.com",
"phone": "<string>",
"status": "<string>",
"created_at": "2023-11-07T05:31:56Z"
}
}
],
"query": "<string>",
"count": 123
}Search for users by identifier (email or phone) within the current app
curl --request GET \
--url https://{defaultHost}/v1/verify/{app_id}/autocomplete \
--header 'Authorization: Bearer <token>' \
--header 'X-Authorization: <api-key>'{
"results": [
{
"id": "<string>",
"type": "email",
"value": "<string>",
"verified": true,
"last_verified_at": "2023-11-07T05:31:56Z",
"user": {
"id": "<string>",
"name": "<string>",
"email": "jsmith@example.com",
"phone": "<string>",
"status": "<string>",
"created_at": "2023-11-07T05:31:56Z"
}
}
],
"query": "<string>",
"count": 123
}API Secret token
User Access token
Application ID
Search query (partial email or phone, minimum 2 characters)
Maximum number of results (default: 10, max: 50)
Was this page helpful?