GET
/
api
/
items
/
{id}
/
receipts
{
  "receiptId": 123,
  "receipNumber": "RCPT-2024-001",
  "referenceNumber": "REF-2024-001",
  "receiptDate": "2024-06-01",
  "formattedReceiptDate": "01/06/2024",
  "amount": 1000,
  "formattedAmount": "$1,000.00",
  "quantity": 10,
  "formattedQuantity": "10",
  "rate": 100,
  "formattedRate": "$100.00",
  "customerDisplayName": "John Doe",
  "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 receipts transactions have been successfully retrieved.

The response is of type object.