Skip to main content
GET
/
v1
/
license-verifications
/
{id}
Get License Verification
curl --request GET \
  --url https://api.camber.so/v1/license-verifications/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "object": "license_verification",
  "status": "scheduled",
  "mode": "live",
  "scheduled_at": "2023-11-07T05:31:56Z",
  "started_at": "2024-01-01T00:00:00Z",
  "completed_at": "2024-01-01T00:00:00Z",
  "failed_at": "2024-01-01T00:00:00Z",
  "external_id": "verification123",
  "metadata": {
    "reqId": "req123"
  },
  "decision": "accepted",
  "issues": [
    "issue1",
    "issue2"
  ],
  "data": {
    "person": {
      "name": {
        "source": "<string>",
        "extracted": "<string>",
        "status": "match"
      }
    },
    "licenses": [
      {
        "jurisdiction": "OH",
        "number": "1234567890",
        "status": "active",
        "issue_date": "2024-01-01",
        "expiration_date": "2024-01-01",
        "proof": "<string>"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string<uuid>
required

Response

200 - application/json

Successfully retrieved license verification

id
string<uuid>
required
Example:

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

object
enum<string>
required
Available options:
license_verification
status
enum<string>
required
Available options:
scheduled,
processing,
completed,
failed
mode
enum<string>
required
Available options:
live,
test
scheduled_at
string<date-time>
required
started_at
string<date-time> | null
required
Example:

"2024-01-01T00:00:00Z"

completed_at
string<date-time> | null
required
Example:

"2024-01-01T00:00:00Z"

failed_at
string<date-time> | null
required
Example:

"2024-01-01T00:00:00Z"

external_id
string | null
required
Example:

"verification123"

metadata
object
required
Example:
{ "reqId": "req123" }
decision
enum<string>
required
Available options:
accepted,
rejected,
flagged,
failed
Example:

"accepted"

issues
string[] | null
required
Example:
["issue1", "issue2"]
data
object
required