Repair Decision

Create a Repair Decision

Create a new repair decision

post

Create a new repair decision

Authorizations
Body
regionstring · enumrequired
Options: au, nz, uk, my
user_emailstringrequired
Example: john@autograb.com
decision_idstringrequired
Example: MRC123
loss_datestring
Example: 23 May 2024
estimate_datestring
Example: 02 June 2024
approval_datestring
Example: 14 June 2024
regostring
Example: 1IDX452
statestring

Only used in Australia when rego is provided

Example: WA
vehicle_titlestring
Example: 2022 Toyota Hilux SR5
odometernumberrequired
Example: 50000
repairer_namestring
Example: John Smith Auto Services
repair_typeobjectrequired
Example: estimate

repair_refitnumber

Only used when repair_type is estimate

Example: 1111
repair_installnumber

Only used when repair_type is estimate

Example: 2222
repair_paintnumber

Only used when repair_type is estimate

Example: 3333
repair_partsnumber

Only used when repair_type is estimate

Example: 4444
repair_miscellaneousnumber

Only used when repair_type is estimate

Example: 5555
repair_costnumber

Only used when repair_type is exact

Example: 12345
repair_supplementarynumber

Supplementary percentage to add to total repair cost

Example: 2
repair_notesstring
Example: Front left door needs replacing
salvage_typeobjectrequired
Example: estimate

salvage_statusobject
Example: repairable

salvage_notesstring
Example: Transport
salvage_costnumber
Example: 2000
pav_typeobjectrequired
Example: estimate

pav_estimate_typeobject

Only used when pav_type is estimate

Example: market

pav_valuenumber

Only used when pav_type is exact

Example: 30000
decision_typeobject
Example: repair

decision_notesstring
Example: Car has sentimental value to the customer
Responses
curl -L \
  --request POST \
  --url 'https://api.autograb.com.au/v2/repair-decisions/' \
  --header 'ApiKey: YOUR_API_KEY' \
  --header 'Content-Type: application/json' \
  --data '{
    "region": "au",
    "user_email": "john@autograb.com",
    "decision_id": "MRC123",
    "loss_date": "23 May 2024",
    "estimate_date": "02 June 2024",
    "approval_date": "14 June 2024",
    "rego": "1IDX452",
    "state": "WA",
    "vehicle_title": "2022 Toyota Hilux SR5",
    "odometer": 50000,
    "repairer_name": "John Smith Auto Services",
    "repair_type": "estimate",
    "repair_refit": 1111,
    "repair_install": 2222,
    "repair_paint": 3333,
    "repair_parts": 4444,
    "repair_miscellaneous": 5555,
    "repair_cost": 12345,
    "repair_supplementary": 2,
    "repair_notes": "Front left door needs replacing",
    "salvage_type": "estimate",
    "salvage_status": "repairable",
    "salvage_notes": "Transport",
    "salvage_cost": 2000,
    "pav_type": "estimate",
    "pav_estimate_type": "market",
    "pav_value": 30000,
    "decision_type": "repair",
    "decision_notes": "Car has sentimental value to the customer"
  }'
{
  "success": true,
  "error": "text"
}

Last updated

Was this helpful?