PUT
/
v0
/
transactions
/
journal-entries
curl --request PUT \
  --url https://api.sandbox.teal.dev/v0/transactions/journal-entries \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'teal-instance-id: <teal-instance-id>' \
  --data '[
  {
    "journal_entry_id": "C4ocnUQze8kDwQ3EczkZXn",
    "review_status": "reviewed"
  }
]'
This response does not have an example.

Authorizations

Authorization
string
header
required

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

Headers

teal-instance-id
string
required

The Teal instance ID

Body

application/json · object[]
journal_entry_id
string
required

The unique ID of the object.

Example:

"C4ocnUQze8kDwQ3EczkZXn"

review_status
enum<string>
required

The review status.

Available options:
unreviewed,
reviewed
Example:

"reviewed"

Response

204
_mintlify/placeholder

Successful Response