Get Estimate by ID
GET/api/estimates/{id}
Headers
| Field | Type | Description |
|---|---|---|
| authtoken | String | Authentication token, generated from admin area |
Parameters
| Field | Type | Description |
|---|---|---|
| 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"
}