GET
/
v0
/
journal-entries
Authorization
Header
Query
curl --request GET \
  --url https://api.sandbox.teal.dev/v0/journal-entries \
  --header 'Authorization: <authorization>' \
  --header 'teal-instance-id: <teal-instance-id>'
{
  "next_page_token": "<string>",
  "prev_page_token": "<string>",
  "records": [
    {
      "datetime": "2022-01-01T00:00:00Z",
      "description": "Payment of legal fees",
      "id": "C4ocnUQze8kDwQ3EczkZXn"
    }
  ]
}

Authorizations

Authorization
string
headerrequired

The access token received from the authorization server in the OAuth 2.0 flow.

Headers

teal-instance-id
string
required

The Teal instance ID

Query Parameters

limit
integer | null

The number of records to return. Max limit is 100.

page_token
string

Response

200 - application/json
next_page_token
string | null
required

The token to use to request the next page

prev_page_token
string | null
required

The token to use to request the previous page

records
object[]
required

List of journal entries