List all Estimates

GET/api/estimates

Headers

FieldTypeDescription
authtoken String Authentication token, generated from admin area

Parameters

FieldTypeDescription
client_id Number optional Optional filter by client ID
status String optional Optional filter by status (draft, sent, accepted, declined)
curl -X GET "https://yoursite.com/api/estimates" \
  -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
GroupEstimates
Sincev1.0.0
Defined inRestApi/Controllers/EstimatesController.php