GET
/
ledgers
/
{ledgerId}
/
expenses
List ledger expenses
curl --request GET \
  --url https://qismah.app/api/public/v1/ledgers/{ledgerId}/expenses \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": "<string>",
      "title": "<string>",
      "amountCents": 123,
      "currency": "<string>",
      "spentAt": "2023-11-07T05:31:56Z",
      "notes": "<string>",
      "splits": [
        {
          "id": "<string>",
          "amountCents": 123,
          "user": {
            "id": "<string>",
            "name": "<string>",
            "email": "jsmith@example.com"
          }
        }
      ]
    }
  ],
  "nextCursor": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

ledgerId
string
required

Query Parameters

take
integer
Required range: 1 <= x <= 100
cursor
string
from
string<date-time>
to
string<date-time>

Response

Paged expense list

items
object[]
nextCursor
string | null