get
https://service.pcibooking.net/api/verify//results
Retrieves the final outcome of a completed verification, indicating whether the contact details were successfully confirmed by the recipient.
🚧 Check status before retrieving resultsResults are only available once the verification status has transitioned to a terminal state (
Verified,NotVerified, orExpired). We recommend calling the Get Verification Status endpoint first and only calling this endpoint once the session has completed.
Response
| Field | Type | Description |
|---|---|---|
verifyId | string | The unique ID of the verification session. |
status | string | The final status. Possible values: Verified, NotVerified, Expired. |
verified | boolean | true if the recipient successfully confirmed their contact details, otherwise false. |
completedAt | datetime | The UTC datetime at which the verification was completed. |
expiresAt | datetime | The UTC datetime at which the verification link expired or will expire. |
phoneNumber | string | The phone number submitted for verification, as provided in the original request. |
personName | string | The recipient name as provided in the original request. |
language | string | The language used for the verification message. |
callbackUrl | string | The callback URL provided in the original request. Returns null if not provided. |
senderName | string | The SMS sender name used for the verification message. |
metadata | string | The metadata string provided in the original request. Returns null if not provided. |
{
"verifyId": "xLoat3F385vvFRbgI2usOeuXKXQoB8kv",
"status": "Verified",
"verified": true,
"completedAt": "2026-03-15T18:47:10Z",
"expiresAt": "2026-03-15T18:44:21Z",
"phoneNumber": "972544735557",
"personName": "John Doe",
"language": "en",
"callbackUrl": "https://yourplatform.com/verify-callback",
"senderName": "SMS Sender",
"metadata": "MY-REFERENCE_098"
}
