ProcessedTransaction: Difference between revisions
Jump to navigation
Jump to search
(Created page with "= Processed transaction structure = This structure represents a payment transaction that has been prepared or processed during the start of a payment. They can be prepared to...") |
|||
Line 16: | Line 16: | ||
| TransactionId || Guid || The unique identifier of the transaction generated by the Barion system. | | TransactionId || Guid || The unique identifier of the transaction generated by the Barion system. | ||
|- | |- | ||
| Status || [[ | | Status || [[PaymentStatus]] || The current status of the transaction. When initializing a new payment, this is <code>Prepared</code>. When executing an authorized payment and the charge is successful, this is <code>Succeeded</code>. | ||
|- | |- | ||
| Currency || string || The 3 character ISO 4217 currency code of the transaction. | | Currency || string || The 3 character ISO 4217 currency code of the transaction. |
Revision as of 09:06, 3 February 2017
Processed transaction structure
This structure represents a payment transaction that has been prepared or processed during the start of a payment. They can be prepared to be completed by the payer, or fully processed when executing Authorized and recurring payments
API usage
This structure is used by the following API endpoints:
Property list
Property name | Property type | Description |
---|---|---|
POSTransactionId | string | The unique identifier of the transaction at the shop that started the payment. |
TransactionId | Guid | The unique identifier of the transaction generated by the Barion system. |
Status | PaymentStatus | The current status of the transaction. When initializing a new payment, this is Prepared . When executing an authorized payment and the charge is successful, this is Succeeded .
|
Currency | string | The 3 character ISO 4217 currency code of the transaction. |
TransactionTime | Timestamp | The timestamp of the transaction. |