Journal Entries
Get Journal Entries
Get all journal entries for the instance.
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
headerrequiredThe access token received from the authorization server in the OAuth 2.0 flow.
Headers
teal-instance-id
string
requiredThe 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
requiredThe token to use to request the next page
prev_page_token
string | null
requiredThe token to use to request the previous page
records
object[]
requiredList of journal entries
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"
}
]
}