Get Invoice CSV =============== .. role:: green **Type:** :guilabel:`GET` .. py:function:: 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. .. code-block:: shell :caption: Curl curl --request GET \ --url https://cloud.syminet.com/api/v1/billing/invoice/csv/{INVOICE_ID} \ --header "authorization:bearer $API_TOKEN" .. code-block:: json :caption: Response { "data": "RGVzY3JpcHRpb2...BASE64 DATA..." } **Response:** :green:`200 OK`