Skip to main content
GET
/
billing
/
payment
/
{payment_id}
/
receipt
/
items
Get Receipt Items
curl --request GET \
  --url https://api.decodahealth.com/billing/payment/{payment_id}/receipt/items \
  --header 'API-KEY: <api-key>' \
  --header 'TENANT: <tenant>'
[
  {
    "itemName": "<string>",
    "quantity": 123,
    "pricePerItem": 123,
    "description": "<string>",
    "chargeId": "<string>",
    "discountReason": "<string>",
    "discountAmount": 123,
    "discountPercentage": 123,
    "unit": "<string>",
    "itemType": "<string>"
  }
]

Headers

TENANT
string
required

The tenant you are making this request on behalf of

API-KEY
string
required

Your api key

Path Parameters

payment_id
string
required

Response

Successful Response

itemName
string
required
quantity
integer
required
pricePerItem
integer
required
description
string | null
chargeId
string | null
discountReason
string | null
discountAmount
integer | null
discountPercentage
number | null
unit
string | null
itemType
string | null