Search Signer from Document

Get signer/s information for a specific document.

Endpoint

Method URI Headers
GET /client/search/document-signer/{document_uuid} api_token

URL Params

e.g. F1DF26B0-F1AC-11EA-820B-9FCCA3EC9F4C

{success} When a document has 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.

Code 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

Code 400

{
    "success": false,
    "error": {
        "code": 0,
        "message": "Unauthenticated."
    }
}

PHP Code Sample

    $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
        ],
    ]);

Live Demo For Search Document Signer