Authorizations
The access token received from the authorization server in the OAuth 2.0 flow.
curl --request GET \
--url https://app.pennylane.com/api/external/v2/journals/{id} \
--header 'Authorization: Bearer <token>'
{
"code": "<string>",
"id": 123,
"label": "<string>"
}
Retrieve a journal
ℹ️ This endpoint requires one of the following scopes:
ledger
curl --request GET \
--url https://app.pennylane.com/api/external/v2/journals/{id} \
--header 'Authorization: Bearer <token>'
{
"code": "<string>",
"id": 123,
"label": "<string>"
}
The access token received from the authorization server in the OAuth 2.0 flow.
Was this page helpful?