GET
import requests
id = "YOUR_id_PARAMETER"
url = "https://api.qargo.com/v1/accounting/purchase-invoice/" + id + "/documents"
headers = {"Authorization": "Bearer <YOUR_TOKEN_HERE>"}
response = requests.get(url, headers=headers)
data = response.json()
print(data)Successful Response
Array [
]
Response
- string
- null
[ { "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "name": "string", "type": "string", "download_url": "", "subject_type": "string", "content_type": "string" } ]