/v1/tax/transactional/ui
UI for transactional tax calculation
Example
/v1/tax/transactional/ui
Request
GET
Response
200text/html
Returns reactive UI for transactional tax calculation, which can be embeded. UI allows to upload SEPA XML file and calculate transactional tax. Calculated tax is sent to provided email address
Error
400 bad request
your request doesn't meet requested input
401 not authorized
your request doesn't meet authorization requirements
404 not found
entity you loking for, is missing
460 request error
requested operations wasn't performed, or xml import failed
500 internal error
we encountered some internal server error
503 not available
requested entity is offline and cannot be reached, try again later
/v1/tax/trasnactional
Transactional tax calculation
Request
POSTtext/json
email - accounting unit identifier
content - sepa XML

{
   email: string, // invoice number
   content: string[], // base64 encoded file content
}

Response
200text/json
{
   status: boolean, // true or false
}
Error
400 bad request
your request doesn't meet requested input
401 not authorized
your request doesn't meet authorization requirements
404 not found
entity you loking for, is missing
460 request error
requested operations wasn't performed, or xml import failed
500 internal error
we encountered some internal server error
503 not available
requested entity is offline and cannot be reached, try again later