Search Signer

Get information for a specific signer.

Endpoint

Method URI Headers
POST /client/search/signer api_token

Data Params

{
    "email"    : "[email protected]",
    "fullname" : "John Doe",
}

{success} When a signer that business user requested is available the onlinenotary response display all the important details of the specific signer information

Code 200

{
    "data": [
        {
            "uuid": "299bcb9-ed1b-40aa-89e6-57aef8192c29",
            "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."
    }
}

Sample Code Request


$client = new Client();
$api_key = '{api_token}';
$url = 'https://production.onlinenotary.net/api/v1/client/search/signer';        
$response = $client->request('POST', $url , 
[
  'multipart' => [
      [
          'name'     => 'fullname',
          'contents' =>  'Signer Fullname'
      ],
      [
          'name'     => 'email',
          'contents' => "[email protected]"
      ],
  ],
  'auth' => [
      null,
      $api_key
  ],
]);

Live Demo For Search Signer