Pre-Accident Valuation (PAV)
Interact with the AutoGrab PAV product over API
The create insurance claim endpoint triggers the generation of a PAV assessment in the AutoGrab PAV tool, which can then be accessed via the UI.
This allows for external systems to automate the generation of the PAV assessment for a user to then access later by a direct URL using the Claim ID
Create a new insurance claim
Authorizations
Body
agreed_valuenumberOptionalExample:
14000
claim_idstringRequiredExample:
49823750193
external_idstringOptionalExample:
23456
notesstringOptionalExample:
This is a reliable car!
odometernumberOptionalExample:
50000
regionstring · enumRequiredPossible values:
regostringOptionalExample:
698XCU
statestringOptionalExample:
VIC
user_emailstringOptionalExample:
[email protected]
vinstringOptionalExample:
KMFWBX7JMBU294974
Responses
201
Success
application/json
400
Bad Request
application/json
401
Unauthorized
application/json
post
POST /v2/insurance-claims/ HTTP/1.1
Host: api.autograb.com.au
ApiKey: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 306
{
"agreed_value": 14000,
"claim_id": "49823750193",
"external_id": "23456",
"notes": "This is a reliable car!",
"odometer": 50000,
"pre_existing_damage": [
{
"description": "Dent on passenger door",
"repair_cost": 400
}
],
"region": "au",
"rego": "698XCU",
"state": "VIC",
"user_email": "[email protected]",
"vin": "KMFWBX7JMBU294974"
}
{
"success": true,
"claim": {
"id": "07904f27-ac6b-4b48-9f8f-af26a7afc905"
}
}
Access PAV via URL
Once a PAV is successfully generated, you can generate a URL to access the PAV assessment via AutoGrabs front end using the following format:
https://app.autograb.com.au/integrations/<clientName>/<claimId>
This allows for use cases such as adding a button on a UI that can auto redirect a user to the AutoGrab PAV platform to quickly access the specific PAV assessment.
Last updated
Was this helpful?