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

Repair Decision

Create a Repair Decision

PreviousAutoPAVNextAutoMate Usage Guidance

Last updated 3 months ago

Was this helpful?

Create a new repair decision

post

Create a new repair decision

Authorizations
Body
regionstring ยท enumRequiredPossible values:
user_emailstringRequiredExample: john@autograb.com
decision_idstringRequiredExample: MRC123
loss_datestringOptionalExample: 23 May 2024
estimate_datestringOptionalExample: 02 June 2024
approval_datestringOptionalExample: 14 June 2024
regostringOptionalExample: 1IDX452
statestringOptional

Only used in Australia when rego is provided

Example: WA
vehicle_titlestringOptionalExample: 2022 Toyota Hilux SR5
odometernumberRequiredExample: 50000
repairer_namestringOptionalExample: John Smith Auto Services
repair_refitnumberOptional

Only used when repair_type is estimate

Example: 1111
repair_installnumberOptional

Only used when repair_type is estimate

Example: 2222
repair_paintnumberOptional

Only used when repair_type is estimate

Example: 3333
repair_partsnumberOptional

Only used when repair_type is estimate

Example: 4444
repair_miscellaneousnumberOptional

Only used when repair_type is estimate

Example: 5555
repair_costnumberOptional

Only used when repair_type is exact

Example: 12345
repair_supplementarynumberOptional

Supplementary percentage to add to total repair cost

Example: 2
repair_notesstringOptionalExample: Front left door needs replacing
salvage_notesstringOptionalExample: Transport
salvage_costnumberOptionalExample: 2000
pav_valuenumberOptional

Only used when pav_type is exact

Example: 30000
decision_notesstringOptionalExample: Car has sentimental value to the customer
Responses
200
Success
application/json
201
Created
application/json
400
Bad Request
application/json
401
Unauthorized
application/json
post
POST /v2/repair-decisions/ HTTP/1.1
Host: api.autograb.com.au
ApiKey: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 777

{
  "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"
}