Skip to main content
POST
/
filings
/
liability-report
/
export
Export liability report as zipped CSVs
curl --request POST \
  --url https://api.prod.commenda.io/api/v1/filings/liability-report/export \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "filing_ids": [
    "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  ],
  "delivery_recipients": [
    "tax-team@example.com"
  ]
}
'
{
  "data": {
    "job_id": "j1a2b3c4-d5e6-7890-abcd-ef1234567890"
  },
  "message": "Successfully queued liability report export."
}

Documentation Index

Fetch the complete documentation index at: https://docs.commenda.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
filing_ids
string<uuid>[]
required

List of filing UUIDs to include in the export. Maximum 100 entries.

Required array length: 1 - 100 elements
delivery_recipients
string<email>[]
required

Email addresses that will receive a signed download link to the generated zip when the export job completes.

Minimum array length: 1
Example:
["tax-team@example.com"]

Response

Export job queued successfully

data
object
message
string
Example:

"Successfully queued liability report export."