Skip to main content
POST
/
v1
/
license-verifications
Start License Verification
curl --request POST \
  --url https://api.camber.so/v1/license-verifications \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "license": {
    "type": "CNA",
    "jurisdiction": "AK",
    "number": "1234567890",
    "external_id": "license123",
    "metadata": {
      "key": "value"
    }
  },
  "person": {
    "first_name": "Tony",
    "last_name": "Stark",
    "middle_name": "J",
    "dob": "1970-05-29",
    "external_id": "person123",
    "metadata": {
      "key": "value"
    }
  },
  "external_id": "<string>",
  "metadata": {
    "reqId": "req123"
  },
  "rules": {},
  "sandbox": {
    "decision": "accepted",
    "status": "scheduled"
  }
}
'
{
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "object": "license_verification",
  "mode": "live",
  "scheduled_at": "2023-11-07T05:31:56Z",
  "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 license verification to start

license
object
required
person
object
required
external_id
string
metadata
object
Example:
{ "reqId": "req123" }
rules
object
sandbox
object

Response

202 - application/json

Successfully started license verification

id
string<uuid>
required
Example:

"123e4567-e89b-12d3-a456-426614174000"

object
enum<string>
required
Available options:
license_verification
mode
enum<string>
required
Available options:
live,
test
scheduled_at
string<date-time>
required
external_id
string | null
required
Example:

"verification123"

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