Skip to main content
PATCH
/
cases
/
{case_id}
/
vehicles
/
{vehicle_id}
Update vehicle
curl --request PATCH \
  --url https://api.example.com/v1/cases/{case_id}/vehicles/{vehicle_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "vehicle_type": "automobile",
  "year": 123,
  "make": "<string>",
  "model": "<string>",
  "vin": "<string>",
  "license_plate": "<string>",
  "registration_state": "<string>",
  "title_status": "clean",
  "ownership_type": "sole_owner",
  "co_owner_name": "<string>",
  "estimated_value": 123,
  "valuation_source": "kelley_blue_book",
  "lien_holder": "<string>",
  "lien_payoff_amount": 123,
  "mileage": 123,
  "condition": "excellent",
  "location": "<string>",
  "disposition": "keep",
  "institution_contact_id": "<string>",
  "notes": "<string>"
}
'
{
  "data": {
    "id": "01K9VH01AJ0T77HRYE78AN7VVV",
    "case_id": "<string>",
    "vehicle_type": "automobile",
    "year": 2019,
    "make": "Toyota",
    "model": "Camry",
    "vin": "***ABC123",
    "license_plate": "<string>",
    "registration_state": "UT",
    "title_status": "clean",
    "ownership_type": "sole_owner",
    "co_owner_name": "<string>",
    "estimated_value": 18500,
    "valuation_source": "kelley_blue_book",
    "lien_holder": "<string>",
    "lien_payoff_amount": 123,
    "equity_estimate": 123,
    "mileage": 45000,
    "condition": "excellent",
    "location": "<string>",
    "disposition": "pending_decision",
    "disposition_details": {
      "transferred_to": "<string>",
      "sale_price": 123,
      "sale_date": "2023-12-25",
      "buyer_name": "<string>"
    },
    "title_transfer_status": "not_started",
    "institution_contact_id": "<string>",
    "notes": "<string>",
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

case_id
string
required

Unique case identifier (ULID format).

vehicle_id
string
required

Body

application/json
vehicle_type
enum<string>
required
Available options:
automobile,
motorcycle,
recreational_vehicle,
boat,
commercial_vehicle,
classic_car,
trailer,
off_highway_vehicle,
farm_equipment,
aircraft,
other
year
integer
make
string
model
string
vin
string

Full VIN.

license_plate
string
registration_state
string
Required string length: 2
title_status
enum<string>
Available options:
clean,
salvage,
rebuilt,
lien_present,
missing,
unknown
ownership_type
enum<string>
Available options:
sole_owner,
joint_owner,
transfer_on_death,
leased,
other
co_owner_name
string
estimated_value
number<double>
valuation_source
enum<string>
Available options:
kelley_blue_book,
nada,
edmunds,
appraisal,
owner_estimate
lien_holder
string
lien_payoff_amount
number<double>
mileage
integer
condition
enum<string>
Available options:
excellent,
good,
fair,
poor
location
string
disposition
enum<string>
Available options:
keep,
transfer_to_heir,
sell,
donate,
junk,
pending_decision
institution_contact_id
string
notes
string

Response

Vehicle updated.

data
object