Returns a single estimate (quote) by id, with full nested detail — line items, payments, taxes, documents, custom fields and the client — in one response (no recursive flag needed).The estimate is returned under an Estimate member. Only estimate documents are returned here; an id belonging to another document type (invoice, credit note, …) returns 404 Estimate not found — use that type's own single-resource endpoint instead.Requires permission to view estimates (all-invoices access, or view-details permission together with ownership of the record).
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Responses
The estimate with full nested detail.
curl --location --globoff 'https://.daftra.com/api2/estimates/4012.json' \
--header 'Accept: application/json' \
--header 'apikey: ' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json'
Response Response Example
{
"result": "successful",
"code": 200,
"data": {
"Estimate": {}
}
}