POST
/
v0
/
journal-entry-files
curl --request POST \
  --url https://api.sandbox.teal.dev/v0/journal-entry-files \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: multipart/form-data' \
  --header 'teal-instance-id: <teal-instance-id>' \
  --form 'journal_entry_id=<string>' \
  --form 'file=<string>'
{
  "id": "CNmWM3X6AcvRdEwZKxq4bL",
  "file_name": "invoice.pdf"
}

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

Body

multipart/form-data
journal_entry_id
string
required

The Journal entry ID

file
string
required

A file to be associated with the Journal Entry.

Response

201 - application/json
id
string
required

The unique ID of the object.

file_name
string | null
required

The name of the file uploaded to the Journal Entry. If no value is provided or null is specified, defaults to the name of the file.