Skip to content

Latest commit

 

History

History
18 lines (15 loc) · 2.43 KB

Payment.md

File metadata and controls

18 lines (15 loc) · 2.43 KB

# Payment

Properties

Name Type Description Notes
id int Payment identifier
account_id int Identifier of the account to which this payment relates. This field is only set if it was specified upon creation of the payment.
iban string IBAN of the account to which this payment relates. This field is only set if it was specified upon creation of the payment.
type PaymentType <strong>Type:</strong> PaymentType<br/> Payment type
amount float Total money amount of the payment order(s), as absolute value
order_count int Total count of orders included in this payment
status PaymentStatus <strong>Type:</strong> PaymentStatus<br/> Current payment status:<br/> &bull; OPEN: means that this payment has been created in finAPI, but not yet submitted to the bank.<br/> &bull; PENDING: means that this payment has been requested at the bank, but has not been confirmed yet.<br/> &bull; SUCCESSFUL: means that this payment has been successfully initiated.<br/> &bull; NOT_SUCCESSFUL: means that this payment could not be executed successfully.<br/> &bull; DISCARDED: means that this payment was discarded, either because another payment was requested for the same account before this payment was executed and the bank does not support this, or because the bank has rejected the payment even before the execution.
bank_message string Contains the bank's response to the execution of this payment. This field is not set until the payment gets executed. Note that even after the execution of the payment, the field might still not be set, if the bank did not send any response message.
request_date string Time of when this payment was requested, in the format 'YYYY-MM-DD HH:MM:SS.SSS' (german time)
execution_date string Time of when this payment was executed by finAPI, in the format 'YYYY-MM-DD HH:MM:SS.SSS' (german time)<br/>Note: this is not necessarily identical to the date when the bank will book the payment, e.g. if a future date was given in the 'executionDate' field of the payment.

[Back to Model list] [Back to API list] [Back to README]