GET
/
api
/
items
/
{id}
/
estimates
[
  {
    "estimateId": 123,
    "estimateNumber": "EST-2024-001",
    "referenceNumber": "REF-2024-001",
    "estimateDate": "2024-06-01",
    "formattedEstimateDate": "01/06/2024",
    "amount": 1000,
    "formattedAmount": "$1,000.00",
    "quantity": 5,
    "formattedQuantity": "5",
    "rate": 200,
    "formattedRate": "$200.00",
    "customerDisplayName": "Acme Corp",
    "customerCurrencyCode": "USD"
  }
]

Headers

Authorization
string
required

Value must be 'Bearer <token>' where <token> is an API key prefixed with 'bc_' or a JWT token.

Example:

"Bearer bc_1234567890abcdef"

organization-id
string
required

Required if Authorization is a JWT token. The organization ID to operate within.

Path Parameters

id
number
required

The item id

Response

200
application/json

The item associated estimate transactions have been successfully retrieved.

The response is of type object[].