GET
/
ledgers
List ledgers
curl --request GET \
  --url https://qismah.app/api/public/v1/ledgers \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "name": "<string>",
    "defaultCurrency": "<string>",
    "members": [
      {
        "id": "<string>",
        "role": "<string>",
        "user": {
          "id": "<string>",
          "name": "<string>",
          "email": "jsmith@example.com"
        }
      }
    ]
  }
]

Authorizations

Authorization
string
header
required

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

Response

Ledgers visible to the token owner

id
string
required
name
string
required
defaultCurrency
string
required
Required string length: 3
members
object[]