Get Estimate by ID

GET/api/estimates/{id}

Headers

FieldTypeDescription
authtoken String Authentication token, generated from admin area

Parameters

FieldTypeDescription
id Number Estimate unique ID
curl -X GET "https://yoursite.com/api/estimates/123" \
  -H "authtoken: YOUR_API_TOKEN"

Success-Response:

{
		"id": "1",
		"client_id": "2",
		"estimate_date": "2021-09-15",
		"valid_until": "2021-10-15",
		"status": "sent",
		"note": "Estimate for new project",
		"tax_id": "1",
		"tax_id2": "0",
		"discount_amount": "10",
		"discount_amount_type": "percentage",
		"project_id": "1"
}
MethodGET
Path/api/estimates/{id}
GroupEstimates
Sincev1.0.0
Defined inRestApi/Controllers/EstimatesController.php