POST | /BatchCheckElsterAsync | An asynchronous service to perform basic checks on a batch of tax data. |
---|
"use strict";
export class TaxData {
/** @param {{id?:string,content?:string}} [init] */
constructor(init) { Object.assign(this, init) }
/**
* @type {string}
* @description The unique identifier of the tax data. */
id;
/**
* @type {string}
* @description The XML-based tax declaration. */
content;
}
export class BatchCheckElsterBase {
/** @param {{data?:TaxData[]}} [init] */
constructor(init) { Object.assign(this, init) }
/**
* @type {TaxData[]}
* @description The batch of ELSTER tax data to check. */
data;
}
export class BatchCheckElsterAsync extends BatchCheckElsterBase {
/** @param {{data?:TaxData[],data?:TaxData[]}} [init] */
constructor(init) { super(init); Object.assign(this, init) }
/**
* @type {TaxData[]}
* @description The batch of ELSTER tax data to check. */
data;
}
JavaScript BatchCheckElsterAsync DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .x-msgpack suffix or ?format=x-msgpack
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /BatchCheckElsterAsync HTTP/1.1
Host: taxfiling.pwc.de
Accept: application/x-msgpack
Content-Type: application/x-msgpack
Content-Length: length
{"data":[{"id":"String","content":"String"}]}
HTTP/1.1 200 OK Content-Type: application/x-msgpack Content-Length: length [{"zertifikatErforderlich":false,"hatHerstellerId":false,"hatDatenlieferant":false,"stagingEnabled":false,"transferProtokollDruckbar":false,"id":"String","index":0,"responseStatus":{"errorCode":"String","message":"String","stackTrace":"String","errors":[{"errorCode":"String","fieldName":"String","message":"String","meta":{"String":"String"}}],"meta":{"String":"String"}}}]