Which fields should the schema of a transaction contain?
You will find the schema of the transaction in the SIGN DE API documentation:
To start a transaction, set the state field of the request body to "ACTIVE" and use the correct client_id.
There are two ways to end a transaction:
-
If the transaction has finished as expected, set the state to
"FINISHED". -
If something went wrong and you want to cancel the transaction, set the state to
"CANCELLED".
The query string for this endpoint must include the tx_revision parameter . Set tx_revision to 1 when you start the transaction. After each call, the tx_revision must be incremented. Pass an incremented tx_revision in the query string for the next call.
All the data in the schema field of the request body must be UTF-8 encoded.
When you start a transaction, the type and data of the transaction must be empty. This is required by the DSFinV-K (v2.1).
Was this page helpful?