cURL
curl --request GET \ --url https://dev.exante.app/api/invoices/{invoice_uid}/attachments \ --header 'Authorization: Bearer <token>'
{ "status": "success", "status_code": 200, "message": "Success", "data": { "items": [ { "uid": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "filename": "<string>", "content_type": "<string>", "file_size": 123, "uploaded_by": 123, "created_on": "2023-11-07T05:31:56Z", "description": "<string>", "is_public": true, "invoice_uid": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "presigned_url": "<string>" } ], "_meta": { "page": 123, "per_page": 123, "total_pages": 123, "total_items": 123 }, "_links": { "self": "<string>", "next": "<string>", "prev": "<string>" } } }
Returns a paginated list of invoice attachments with presigned download URLs.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Invoice UID
x >= 1
1 <= x <= 100
Paginated attachment list
"success"
200
"Success"
Show child attributes