Skip to main content
POST
/
v1
/
verifications
Start Document Verification (Deprecated)
curl --request POST \
  --url https://api.camber.so/v1/verifications \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "document": {
    "url": "https://example.com/document.pdf",
    "external_id": "doc123",
    "metadata": {
      "key": "value"
    }
  },
  "person": {
    "first_name": "Tony",
    "last_name": "Stark",
    "middle_name": "J",
    "dob": "1970-05-29",
    "external_id": "person123",
    "metadata": {
      "key": "value"
    }
  },
  "verification_type": "flu_vaccination",
  "external_id": "<string>",
  "metadata": {
    "reqId": "req123"
  },
  "rules": {}
}
'
{
  "id": "<string>",
  "object": "verification",
  "uri": "/verifications/123",
  "status": "scheduled",
  "mode": "live",
  "verification_type": "flu_vaccination",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "document_id": "doc123",
  "person_id": "person123",
  "external_id": "verification123",
  "metadata": {
    "reqId": "req123"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

A document verification to start

document
object
required
person
object
required
verification_type
enum<string>
required
Available options:
flu_vaccination,
resume,
tuberculosis_test,
covid_vaccination,
clipboard_health_badge,
physical_exam,
life_support_certification,
alcohol_handler_certification,
food_handler_certification
external_id
string
metadata
object
Example:
{ "reqId": "req123" }
rules
object

Response

202 - application/json

Successfully started document verification

id
string
required
object
enum<string>
required
Available options:
verification
uri
string<uri>
required
Example:

"/verifications/123"

status
enum<string>
required
Available options:
scheduled,
processing,
complete,
failed
mode
enum<string>
required
Available options:
live,
test
verification_type
enum<string>
required
Available options:
flu_vaccination,
resume,
tuberculosis_test,
covid_vaccination,
clipboard_health_badge,
physical_exam,
life_support_certification,
alcohol_handler_certification,
food_handler_certification
created_at
string<date-time>
required
updated_at
string<date-time>
required
document_id
string<uuid>
required
Example:

"doc123"

person_id
string<uuid>
required
Example:

"person123"

external_id
string | null
required
Example:

"verification123"

metadata
object
required
Example:
{ "reqId": "req123" }