GET
/
compliance
curl --request GET \
  --url http://staging.api.commenda.io/api/v1/compliance \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "compliance_items": [
      {
        "id": "<string>",
        "category": "DIRECT_TAX",
        "title": "<string>",
        "description": "<string>",
        "dueDate": "2025-04-15",
        "effectiveStartDate": "2024-01-01",
        "effectiveEndDate": "2024-12-31",
        "status": "NOT_FILED"
      }
    ]
  },
  "message": "Successfully fetched files."
}

Authorizations

Authorization
string
header
required

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

Query Parameters

corporationId
string
required

Corporation ID for which to fetch compliance items

Response

200
application/json
List of Compliance Items
data
object
message
string
Example:

"Successfully fetched files."