Get signer/s information for a specific document.
| Method | URI | Headers |
|---|---|---|
| GET | /client/search/document-signer/{document_uuid} |
api_token |
e.g. F1DF26B0-F1AC-11EA-820B-9FCCA3EC9F4C
{success} When a
documenthas been requested to be notarized, it has also signers assigned to it. This endpoint would allow you to request information for each signer. This is helpful when you'd want to know if your signer(s) have concluded their call.
200{
"data": [
{
"uuid": "F1DF26B0-F1AC-11EA-820B-9FCCA3EC9F4C",
"fullname": "John Doe",
"email": "[email protected]",
"turn": 1,
"tech_check": 0,
"signer_verified": 1,
"signature_picked": 1,
"id_scan": 1,
"video_url": null,
"driver_license_images": {
"front": "http:\/\/app.onlinenotary.net\/\/images\/screenshots\/35F91D00-E4B3-11EB-83EE-6BD966D9CE70\/front.jpeg",
"back": "http:\/\/app.onlinenotary.net\/\/images\/screenshots\/35F91D00-E4B3-11EB-83EE-6BD966D9CE70\/back.jpeg"
}
}
]
}
{danger} Error response Unauthenticated
Please contact OnlineNotary for api access
400{
"success": false,
"error": {
"code": 0,
"message": "Unauthenticated."
}
}
$client = new Client();
$api_key = 'api_key';
$url = 'https://production.onlinenotary.net/api/v1/client/search/document-signer/{document_uuid}';
$response = $client->request('GET', $url ,
['auth' => [
null,
$api_key
],
]);