Get list of accounting periods

GET /api-v1/accounting-period

Headers

Query parameters

Responses

GET /api-v1/accounting-period
curl \
 -X GET http://wyzio.app/api-v1/accounting-period \
 -H "TARGET-ORGANIZATION-ID: 42" \
 -H "WEAL-TOKEN: string"
Response examples (200)
[
  {
    "endDate": "2024-05-04T09:42:00+00:00",
    "fiscalYear": 42,
    "id": 42,
    "isLocked": true,
    "lockedUntil": "2024-05-04T09:42:00+00:00",
    "startDate": "2024-05-04T09:42:00+00:00",
    "status": "OPEN",
    "vatRule": {
      "de": "string",
      "en": "string",
      "fr": "string",
      "it": "string"
    },
    "vatRuleId": 42
  }
]