LogoLogo
API StatusSupportPostmanContact Us
๐Ÿ‡ฆ๐Ÿ‡บ AU AutoGrab API Doc
๐Ÿ‡ฆ๐Ÿ‡บ AU AutoGrab API Doc
  • AutoGrab Basics
    • AutoGrab Developer Hub
    • Integration Overview
    • API Test Cases
    • FAQ
  • Authentication
    • API Key
    • OAuth Authentication
  • Vehicle Search
    • Vehicle Searching Basics
    • Plain-text Search
    • Registration Plate Search
    • Registration Status
    • VIN Search
    • Facet Search
    • Vehicle ID Search
    • Upstream Vehicle Search
    • Marketplace ID Lookup
  • Sourcing
    • Sourcing Basics
    • Market Overlay
    • Market Statistics
    • Stock Feeds
  • Vehicle Data
    • Vehicle Data Basics
    • Detailed Specifications Data
    • Vehicle History
    • Factory Build Data
  • Valuation
    • Valuation Basics
    • Valuation Predict
    • Residual Valuations
    • Max Offer Configuration
    • Gauge API
  • Embeddable Products
    • Embeddable Basics
    • Gauge Widget
    • Valuation Widget
    • Market Overlay Widget
  • REPORTS
    • Car Analysis
    • PPSR
    • Certificates
  • Customer Recapture
    • Customer Recapture API
    • Webhooks
  • Insurance
    • Pre-Accident Valuation (PAV)
    • AutoPAV
    • Repair Decision
  • AutoMate
    • AutoMate Usage Guidance
Powered by GitBook
LogoLogo

Links

  • Terms of Use

2024 ยฉ AutoGrab Pty Ltd. ABN 79 638 468 569

On this page

Was this helpful?

Export as PDF
  1. Insurance

Pre-Accident Valuation (PAV)

Interact with the AutoGrab PAV product over API

PreviousWebhooksNextAutoPAV

Last updated 3 months ago

Was this helpful?

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

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.

  • POSTCreate a new insurance claim
  • Access PAV via URL

Create a new insurance claim

post

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: john@autograb.com
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": "john@autograb.com",
  "vin": "KMFWBX7JMBU294974"
}
{
  "success": true,
  "claim": {
    "id": "07904f27-ac6b-4b48-9f8f-af26a7afc905"
  }
}