Skip to main content
GET
/
billing
/
cash-balance
/
daily-transactions
Get Daily Cash Transactions
curl --request GET \
  --url https://api.decodahealth.com/billing/cash-balance/daily-transactions \
  --header 'API-KEY: <api-key>' \
  --header 'TENANT: <tenant>'
[
  {
    "date": "2023-11-07T05:31:56Z",
    "locationId": "<string>",
    "cashPayments": 123,
    "cashRefunds": 123,
    "adjustments": 123
  }
]

Headers

TENANT
string
required

The tenant you are making this request on behalf of

API-KEY
string
required

Your api key

Query Parameters

location_id
string
required

The location ID to fetch transactions for

start_date
string<date-time>
required

Start date for the range (inclusive)

end_date
string<date-time>
required

End date for the range (inclusive)

Response

Successful Response

date
string<date-time>
required

The date for these transactions

locationId
string
required

The location ID

cashPayments
integer
required

Total cash payments received in cents

cashRefunds
integer
required

Total cash refunds given in cents

adjustments
integer
required

Total cash balance adjustments in cents