Tax Filing Service

<back to all web services

BatchCheckElster

SyncÜberprüfung

A synchronous service to perform basic checks on a batch of tax data.

Requires Authentication
The following routes are available for this service:
POST/BatchCheckElsterA synchronous service to perform basic checks on a batch of tax data.
BatchCheckElster Parameters:
NameParameterData TypeRequiredDescription
DatabodyList<TaxData>YesThe batch of ELSTER tax data to check.
BatchCheckElsterBase Parameters:
NameParameterData TypeRequiredDescription
DataformList<TaxData>YesThe batch of ELSTER tax data to check.
TaxData Parameters:
NameParameterData TypeRequiredDescription
IdformstringYesThe unique identifier of the tax data.
ContentformstringYesThe XML-based tax declaration.

To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv

HTTP + JSV

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /BatchCheckElster HTTP/1.1 
Host: taxfiling.pwc.de 
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length

{
	data: 
	[
		{
			id: String,
			content: String
		}
	]
}
HTTP/1.1 200 OK
Content-Type: text/jsv
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
			}
		}
	}
]