Get Invoice CSV
Type: GET
- https://cloud.syminet.com/api/v1/billing/invoice/csv/{INVOICE_ID}
Return a JSON payload of an invoice in CSV format.
Note
The JSON will return a base64 encoded blob in order to avoid formatting issues, such as “JSON-in-JSON” nesting.
Required URL Parameters:
- INVOICE_ID
Invoice ID to fetch.
Curl
curl --request GET \
--url https://cloud.syminet.com/api/v1/billing/invoice/csv/{INVOICE_ID} \
--header "authorization:bearer $API_TOKEN"
Response
{
"data": "RGVzY3JpcHRpb2...BASE64 DATA..."
}
Response: 200 OK