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.

idstring

The ID of the estimate (prefix ES-).

statusstring

The status of the estimate.

serialIdstring

The interval of the estimate.

namestring

The name of the estimate.

descriptionstring

The description of the estimate.

notesstring

The estimate note.

imageUrlstring

The image URL of the estimate.

clientIdstring

The ID of the associated client (prefix CL-).

jobIdstring

The ID of the associated job or lead (prefix JOB- or LD-).

discountAmountnumber

The estimate discount amount.

taxPercentnumber

The estimate tax percent.

taxableAmountnumber

The estimate taxable amount.

taxAmountnumber

The estimate tax amount.

isDepositPercentageboolean

The estimate deposit percentage or amount.

depositnumber

The deposit amount or percentage needed.

subTotalnumber

The estimate subtotal before tax and discounts.

totalnumber

The total amount of the estimate.

declineReasonstring

The decline reason of the estimate.

sentDatestring date-time

The sent date of the estimate.

estimateDatestring date-time

The date of the estimate.

lastViewedDatestring date-time

The last viewed date of the estimate.

statusUpdatedAtstring date-time

The date and time the status was last updated.

updatedstring date-time

The date and time the estimate was last updated.

createdstring date-time

The date and time the estimate was created.

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"
}