get
http://{{url}}/api/method/emotive_app.api.sales.quotes.get_quote
This endpoint retrieves a specific sales quote based on the provided quote_id.
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
Example Response
{
"message": {
"quotes": {
"name": "2026-QTE-01-00781",
"owner": "[email protected]",
"creation": "2026-01-29 04:05:14.137754",
"modified": "2026-01-29 04:05:14.137754",
"workflow_state": "New",
"status": "Active",
"type_of_sale": "In House Finance",
"sale_price": 0.0,
"interest_rate": 10.0,
"payment_frequency": "Monthly",
"buyer_name": "Sravya D",
"vin": "2FMDK38C98BA26159",
"vehicle_make": "Ford",
"vehicle_model": "Edge",
"vehicle_year": 2008,
"taxes": [
{
"tax_item": "TX-State Tax",
"rate": 6.25,
"amount": 0.0
}
],
"fees": [
{
"name1": "Registration Fee",
"amount": 64.75,
"type": "Financed"
}
],
"tbl_service_contract": [
{
"supplier": "Assurant",
"amount": 900.0,
"term": 48,
"product": "48 Months 80000 Miles"
}
]
},
"stock_no_details": {
"model_year": "2008",
"make": "Ford",
"body_type": "SPORT UTILITY 4-DR",
"model": "Edge"
},
"sales_contract_id": null
}
}Response
- The response returns the details of the requested quote in JSON format.
Response Details
-
quotes
- Contains all quote-related information, including:
- Pricing details
- Vehicle information
- Applied taxes
- Fees
- Service contract details
- Contains all quote-related information, including:
-
stock_no_details
- Contains additional vehicle metadata linked to the stock number.
-
sales_contract_id
- Returns
nullwhen the quote is not linked to any sales contract.
- Returns
Notes
- Ensure a valid quote_id is provided to retrieve the corresponding quote details.
- Many numeric fields may be returned as
0.0if values are not yet calculated. - Optional arrays such as:
trade_in_vehiclesamortizationlender_fees
may be empty when no data exists.
