FundingInformation: Difference between revisions
Jump to navigation
Jump to search
m (replaced reference to v2 GetPaymentState with v4 PaymentState) |
No edit summary |
||
(One intermediate revision by the same user not shown) | |||
Line 16: | Line 16: | ||
| AuthorizationCode || string || The authorization code received by the card processing system when executing the payment. If authorization was not successful, this is empty. | | AuthorizationCode || string || The authorization code received by the card processing system when executing the payment. If authorization was not successful, this is empty. | ||
|- | |- | ||
| ProcessResult || string || The result of the last card payment attempt. If there was no charge attempt, this is empty.<br>Possible values: | | ProcessResult || string || The result of the '''last''' card payment attempt (even if it was unsuccessful). If there was no charge attempt, this is empty.<br>Possible values: | ||
* <b>Successful</b>: the card transaction was successful | * <b>Successful</b>: the card transaction was successful | ||
* <b>ProblemWithCard</b>: the card transaction was unsuccessful: card number, CVC or/and expiry is wrong. The card may have been stolen, deleted, disabled or disabled for online transactions. | * <b>ProblemWithCard</b>: the card transaction was unsuccessful: card number, CVC or/and expiry is wrong. The card may have been stolen, deleted, disabled or disabled for online transactions. | ||
Line 28: | Line 28: | ||
* <b>CardNotSupported</b>: the payment card is not supported at the time of the transaction | * <b>CardNotSupported</b>: the payment card is not supported at the time of the transaction | ||
* <b>Unknown</b>: the bank system did not provide information about the operation, the result of the process could not be determined | * <b>Unknown</b>: the bank system did not provide information about the operation, the result of the process could not be determined | ||
* <b>ThreeDsNotEnabled</b>: Legacy error, not used any more. Could occur in case of older payments, where 3ds was not enabled on the shop | |||
|- | |- | ||
|} | |} |
Latest revision as of 10:26, 18 June 2024
Funding information structure
This structure represents the details about the funding source of the last payment attempt. At the moment this is only used when the funding source is a bank card.
API usage
This structure is used by the following API endpoints:
Property list
Property name | Property type | Description |
---|---|---|
BankCard | BankCard | The bank card used to complete the payment. If there was no bank card used in the attempt, this is empty. |
AuthorizationCode | string | The authorization code received by the card processing system when executing the payment. If authorization was not successful, this is empty. |
ProcessResult | string | The result of the last card payment attempt (even if it was unsuccessful). If there was no charge attempt, this is empty. Possible values:
|