curl --request POST \
--url https://api.hyperline.co/v1/invoices/{id}/upload \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: multipart/form-data' \
--form 'file=<any>'
{}
Upload a PDF file to an existing invoice.
curl --request POST \
--url https://api.hyperline.co/v1/invoices/{id}/upload \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: multipart/form-data' \
--form 'file=<any>'
{}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
The response is of type object
.
Was this page helpful?