GET declaration/current/deliveries

Gets the declaration delivery information. This feature is not available in all subscriptions. Contact your accountmanager for more information. This endpoint will return your combined workflow data over the last 30 days. Optionally you can provide a periodStart and periodEnd to retrieve a specific period. Maximum date-range for this is three months.

Request Information

URI Parameters

None.

Body Parameters

The period start of the declarations.

FiscaalGemak.Web.Api.Models.Models.DeclarationPeriodModel
NameDescriptionTypeAdditional information
PeriodStart

Gets or sets the periodstart of the request. This parameter is optional.

date

None.

PeriodEnd

Gets or sets the periodend of the request. This parameter is optional.

date

None.

Request Formats

application/json, text/json

Sample:
{
  "PeriodStart": "2025-02-07T00:13:24.042158+01:00",
  "PeriodEnd": "2025-02-07T00:13:24.042158+01:00"
}

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

The delivery information

Collection of FiscaalGemak.Web.Models.Models.DeclarationDeliveryInfoModel
NameDescriptionTypeAdditional information
ClientId

integer

None.

DeclarationId

integer

None.

DeclarationType

FiscaalGemak.Core.Models.Models.DeclarationType

None.

Year

integer

None.

Approval

string

None.

SendBy

string

None.

DigipoortDate

date

None.

ReportSigner

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ClientId": 1,
    "DeclarationId": 2,
    "DeclarationType": 0,
    "Year": 3,
    "Approval": "sample string 4",
    "SendBy": "sample string 5",
    "DigipoortDate": "2025-02-07T00:13:24.042158+01:00",
    "ReportSigner": "sample string 6"
  },
  {
    "ClientId": 1,
    "DeclarationId": 2,
    "DeclarationType": 0,
    "Year": 3,
    "Approval": "sample string 4",
    "SendBy": "sample string 5",
    "DigipoortDate": "2025-02-07T00:13:24.042158+01:00",
    "ReportSigner": "sample string 6"
  }
]