latestOpenAPI 3.0.02026-08-1284111344.5 KB
14666f4db0f8
Estimates
Retrieve a single Estimate
Retrieves a single Estimate by its ID.
get/v2/estimates/{id}
Path parameters
idstring required
Example:ES-LwqGJnRwvZPaNe5E
The estimate ID (prefix ES-).
Headers
Authorizationstring required
Example:Bearer <token>
Bearer Token
Response
The requested Estimate.
Example response
{
"id": "ES-LwqGJnRwvZPaNe5E",
"status": "Pending",
"serialId": "1-1",
"name": "Estimate 1",
"description": "This is a description for the estimate",
"notes": "This is a note for the estimate",
"imageUrl": "https://example.com/image.png",
"clientId": "CL-LwqGJnRwvZPaNe5E",
"jobId": "JOB-BA5r7o4bqzR9MONa",
"discountAmount": 10,
"taxPercent": 10,
"taxableAmount": 100,
"taxAmount": 10,
"isDepositPercentage": true,
"deposit": 100,
"subTotal": 10,
"total": 10,
"declineReason": "This is a decline reason for the estimate",
"lineItems": [
{
"id": "ELI-BA5r7o4bqzR9MONa",
"productId": 1000,
"name": "Deadbolt",
"description": "Deadbolt replacement, any color and size",
"price": 100,
"quantity": 1,
"total": 100,
"cost": 100,
"taxable": true,
"discountable": true,
"inventoryManaged": true,
"inventorySync": true,
"optionalConverted": true
}
],
"payments": [
{
"id": "PAY-BA5r7o4bqzR9MONa",
"type": "Cash",
"amount": 100,
"tipAmount": 10
}
],
"attachments": [
{
"id": "FLE-BA5r7o4bqzR9MONa",
"name": "file.pdf",
"fileUrl": "https://example.com/file.pdf"
}
],
"signatureImage": {
"id": "IMG-BA5r7o4bqzR9MONa",
"signedByName": "John Doe",
"imageUrl": "https://example.com/image.png"
},
"sentDate": "2026-01-01 00:00:00",
"estimateDate": "2026-01-01 00:00:00",
"lastViewedDate": "2026-01-01 00:00:00",
"statusUpdatedAt": "2026-01-01 00:00:00",
"updated": "2026-01-01 00:00:00",
"created": "2026-01-01 00:00:00"
}