POST
/
title
/
{id}
/
data
curl --request POST \
  --url https://dev.cardinalgray.com/title/{id}/data \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "sync_nmvtis": false,
  "sync_public": false,
  "sync_private": false,
  "dppa_exemption": "legitimate_business_need"
}'
{
  "entryId": "<string>",
  "job_status": "enriching"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Unique identifier of the title entry

Body

application/json
Data sources to fetch from
sync_nmvtis
boolean
default:false

Fetch data from NMVTIS (National Motor Vehicle Title Information System)

sync_public
boolean
default:false

Fetch data from public DMV websites.

sync_private
boolean
default:false

Fetch vehicle title and registrant information from private DMV portals.

dppa_exemption
string
default:legitimate_business_need

Driver's Privacy Protection Act exemption code; required if sync_nmvtis or sync_private is set to true,

Response

200
application/json
Data retrieval initiated successfully
entryId
string

ID of the title entry that was processed

job_status
enum<string>

Status of the job ('enriching' if successful, 'failure' if error occurred)

Available options:
enriching,
failure