POST
/
v1
/
invoice
/
upload
Upload invoices
curl --request POST \
  --url http://localhost:3001/v1/invoice/upload \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: multipart/form-data' \
  --form 'files=[
  null
]'
{
  "success": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

multipart/form-data

One or more invoice files to upload (PDF, PNG, or JPEG). Use the files field to include files in the form data.

The body is of type object.

Response

201
application/json

Successfully uploaded invoice(s)

The response is of type object.