GET - leerbedrijflisa/verification-api GitHub Wiki

GET /verifications/{guid}

Response

Data fields

Field Description
id A unique identifier for the verification.
document The link to the document which the verification belongs to.
user The user who has to sign the verification.
status The status of verification.
signed The date and time the verification is signed.
expires The date and time verification expires.

Example

HTTP/1.1 200 OK
Content-Type: application/json

{
  "id": "f0c1804c-5d61-408b-accd-55fc5b4c5cf5",
  "document": "http://mydocs.com/contract",
  "user": "baseenhoorn",
  "status": "pending",
  "signed": "",
  "expires": "9999-12-31T23:59:59.9999999"
}