For the complete documentation index, see llms.txt. This page is also available as Markdown.

Accounting Periods

Retrieve accounting periods (fiscal years) for a given consent.

List accounting periods

get

Retrieves a paginated list of accounting periods for the specified consent.

System support

System
Status

Fortnox

Fortnox

βœ… Supported

Bjorn Lunden

Bjorn Lunden

πŸ“ž Not supported / contact us

Spiris

Spiris

πŸ“ž Not supported / contact us

Tripletex

Tripletex

πŸ“ž Not supported / contact us

Visma e-conomic

Visma e-conomic

βœ… Supported

Billy

Billy

βœ… Supported

Visma Dinero

Visma Dinero

βœ… Supported

Procountor

Procountor

βœ… Supported

Visma Netvisor

Visma Netvisor

βœ… Supported

Microsoft Business Central

Microsoft Business Central

πŸ“ž Not supported / contact us

Exact Online

Exact Online

βœ… Supported

QuickBooks

QuickBooks

πŸ“ž Not supported / contact us

Xero

Xero

βœ… Supported

Bokio

Bokio

πŸ“ž Not supported / contact us

Authorizations
x-api-keystringRequired

Use the API key to access all API endpoints.

Path parameters
consentIdstring Β· uuidRequired

Identifier of the consent representing the connection to the accounting system.

Header parameters
x-correlation-idstring Β· uuidRequired

Unique identifier used to correlate and trace this request.

Responses
200

Returns a paginated list of accounting periods for the specified consent.

application/json

Represents a paginated result containing metadata and a collection of items.

get/api/v1/consents/{consentId}/accountingperiods
GET /accounting/api/v1/consents/{consentId}/accountingperiods HTTP/1.1
Host: apione.zwapgrid.com
x-api-key: YOUR_API_KEY
x-correlation-id: 123e4567-e89b-12d3-a456-426614174000
Accept: */*
{
  "meta": {
    "totalResources": 10,
    "totalPages": 1,
    "currentPage": 1
  },
  "data": [
    {
      "id": "2024",
      "reference": "2024",
      "accountingMethod": null,
      "startDate": "2024-01-01",
      "endDate": "2024-12-31",
      "isOpen": true
    }
  ]
}

Last updated

Was this helpful?