Skip to main content
GET
/
filings
/
{id}
/
contributions
List filing contributions
curl --request GET \
  --url https://api.prod.commenda.io/api/v1/filings/{id}/contributions \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "count": 5,
    "contributions": [
      {
        "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
        "filing_id": "f1e2d3c4-b5a6-7890-abcd-ef1234567890",
        "filing_contribution_id": "REG_COUNTRY_DE_3018_VAT_01_01",
        "filing_through_jurisdiction": "COUNTRY_DE_3018",
        "value": 12345,
        "value_type": "INTEGER",
        "box_id": "DE_81",
        "box_name": "Steuerpflichtige Umsätze",
        "box_order": 1,
        "box_type": "OUTPUT",
        "created_at": 1713168000000000,
        "updated_at": 1713168000000000
      }
    ]
  },
  "message": "Successfully fetched filing contributions."
}

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.

Path Parameters

id
string<uuid>
required

The unique identifier of the filing to retrieve contributions for.

Response

Filing contributions retrieved successfully

data
object
message
string
Example:

"Successfully fetched filing contributions."