GET Single Estimate
Prod Env
{{subdomain}}/api2
Prod Env
{{subdomain}}/api2
GET
{{subdomain}}/api2
Last modified:2025-03-23 23:11:40
Maintainer:Not configured
id
: Estimate ID (required){
"result": "success",
"code": 200,
"data": {
"Estimate": {
"id": 234,
"number": "EST-2023-001",
"client_id": 15,
"date": "2023-03-20",
"expiry_date": "2023-04-19",
"total": 350.00,
"status": 1,
"currency_code": "USD",
"draft": 0,
"notes": "Proposal for Q2 services",
"created": "2023-03-20 10:15:22",
"modified": "2023-03-20 10:15:22"
// Additional estimate fields...
},
"Client": {
"id": 15,
"name": "ACME Corp",
"business_name": "ACME Corporation",
"email": "billing@acmecorp.com"
// Additional client fields...
},
"InvoiceItem": [
{
"id": 567,
"estimate_id": 234,
"product_id": 1,
"description": "Premium Widget",
"quantity": 3,
"unit_price": 100.00,
"discount": 0,
"tax1": 50.00,
"total": 350.00
// Additional item fields...
}
]
}
}
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request GET '{{subdomain}}/api2/api2/estimates/{{id}}.json'
Response Response Example
200 - Success Response
{
"result": "success",
"code": 200,
"data": {
"Estimate": {
"id": 234,
"number": "EST-2023-001",
"client_id": 15,
"date": "2023-03-20",
"expiry_date": "2023-04-19",
"total": 350,
"status": 1,
"currency_code": "USD",
"draft": 0,
"notes": "Proposal for Q2 services",
"created": "2023-03-20 10:15:22",
"modified": "2023-03-20 10:15:22"
},
"Client": {
"id": 15,
"name": "ACME Corp",
"business_name": "ACME Corporation",
"email": "billing@acmecorp.com",
"phone1": "555-1234",
"address1": "123 Main St",
"city": "New York",
"state": "NY",
"postal_code": "10001",
"country_code": "US"
},
"InvoiceItem": [
{
"id": 567,
"estimate_id": 234,
"product_id": 1,
"description": "Premium Widget",
"quantity": 3,
"unit_price": 100,
"discount": 0,
"tax1": 50,
"total": 350
}
]
}
}
Request
None