Post External Enquiry
Submit a customer enquiry to a vehicle in Pipeline
The external_dms_id
to use with the external enquiry endpoint will be provided by AutoGrab, if you do not currently have an ID please reach out to AutoGrab to obtain one.
Post an external enquiry.
Authorizations
Path parameters
external_dms_idstringRequired
external_dealership_idstringRequired
Query parameters
regionstring · enumOptionalPossible values:
The region to perform this request in
reference_idstringOptional
An optional reference id which will be stored against usage records if supplied
Body
idstringRequired
The unique ID of the enquiry from the external DMS
source_idstringRequired
The source ID provided by the external DMS
regionstringRequired
The external enquiry region
stock_numberstringOptional
The stock number of the vehicle being enquired about
regostringOptional
Vehicle registration number
vinstringOptional
Vehicle VIN number
commentstringOptional
Any comments provided by the enquirer
Responses
200
Success
application/json
400
Bad Request
application/json
401
Unauthorized
application/json
post
POST /v2/external-enquiry/{external_dms_id}/{external_dealership_id} HTTP/1.1
Host: api.autograb.com.au
ApiKey: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 288
{
"id": "text",
"source_id": "text",
"region": "text",
"stock_number": "text",
"rego": "text",
"vin": "text",
"comment": "text",
"enquirer": {
"first_name": "text",
"last_name": "text",
"email": "[email protected]",
"mobile": "text"
},
"vehicle": {
"make": "text",
"model": "text",
"badge": "text",
"series": "text",
"year": 1
}
}
{
"successful_ids": [
"1234-abcd-5678-efgh",
"5678-abcd-1234-ijkl"
],
"failed_ids": [
{
"id": "abcd-1234-failed-id",
"reason": "Invalid region specified"
}
]
}
Last updated
Was this helpful?