InternalCreditTransfer
Internal Credit Transfer transaction
type InternalCreditTransfer implements Transaction {
id: ID!
reference: String!
paymentMethodIdentifier: String!
side: TransactionSide!
type: TransactionTypeEnum!
amount: Amount!
label: String!
statusInfo: TransactionStatusInfo!
paymentId: String
payment: Payment
createdAt: DateTime!
updatedAt: DateTime!
counterparty: String!
bookedBalanceAfter: Amount
paymentProduct: PaymentProduct!
creditor: InternalCreditTransferCreditor!
debtor: InternalCreditTransferDebtor!
account: Account
externalReference: String
executionDate: DateTime!
requestedExecutionAt: DateTime
originTransactionId: String
originTransaction: Transaction
returnReason: TransactionReasonCode
statementCanBeGenerated: Boolean
projectId: ID!
isCancelable: Boolean!
supportingDocumentCollections(
first: Int! = 50
before: String
after: String
filters: SupportingDocumentCollectionFilterInput
): SupportingDocumentCollectionConnection!
}
Fields
InternalCreditTransfer.id ● ID! non-null scalar
unique identifier of the transaction
InternalCreditTransfer.reference ● String! non-null scalar
reference assigned by the initiating party, to unambiguously identify the transaction. This reference is passed on, unchanged, throughout the entire reference chain.
InternalCreditTransfer.paymentMethodIdentifier ● String! non-null scalar
payment method identifier used for this transaction. e.g masked PAN or IBAN or accountNumber
InternalCreditTransfer.side ● TransactionSide! non-null enum
side (Credit or Debit)
InternalCreditTransfer.type ● TransactionTypeEnum! non-null enum
type
InternalCreditTransfer.amount ● Amount! non-null object
amount
InternalCreditTransfer.label ● String! non-null scalar
label
InternalCreditTransfer.statusInfo ● TransactionStatusInfo! non-null interface
status information
InternalCreditTransfer.paymentId ● String scalar
ID of the payment associated to this transaction
InternalCreditTransfer.payment ● Payment object
payment associated to this transaction
InternalCreditTransfer.createdAt ● DateTime! non-null scalar
created date
InternalCreditTransfer.updatedAt ● DateTime! non-null scalar
updated date
InternalCreditTransfer.counterparty ● String! non-null scalar
name of the counterparty. e.g Merchant name, Creditor name, Beneficiary Name ...
InternalCreditTransfer.bookedBalanceAfter ● Amount object
[DEPRECATED] booked balance after this transaction. Deprecated in favor of statusInfo.balance.amount on BookedTransactionStatusInfo
InternalCreditTransfer.paymentProduct ● PaymentProduct! non-null enum
payment product used for this transaction
InternalCreditTransfer.creditor ● InternalCreditTransferCreditor! non-null interface
creditor information
InternalCreditTransfer.debtor ● InternalCreditTransferDebtor! non-null interface
debtor information
InternalCreditTransfer.account ● Account object
matching account for the transaction
InternalCreditTransfer.externalReference ● String scalar
an arbitrary identifier that was defined by you when you created this transaction.
For example, you can define it in the CreditTransferInput mutation.
InternalCreditTransfer.executionDate ● DateTime! non-null scalar
a date that reflects the execution date of a transaction from a user viewpoint. Can be used for sorting transactions.
InternalCreditTransfer.requestedExecutionAt ● DateTime scalar
a date that reflects the time at which the user asked the transaction to be executed
InternalCreditTransfer.originTransactionId ● String scalar
ID of the origin transaction associated to this transaction
InternalCreditTransfer.originTransaction ● Transaction interface
origin transaction associated to this transaction
InternalCreditTransfer.returnReason ● TransactionReasonCode enum
r-transaction reason
InternalCreditTransfer.statementCanBeGenerated ● Boolean scalar
true if a transaction statement can be generated for this transaction
InternalCreditTransfer.projectId ● ID! non-null scalar
project id of the transaction
InternalCreditTransfer.isCancelable ● Boolean! non-null scalar
true if this transaction can still be cancelled
InternalCreditTransfer.supportingDocumentCollections ● SupportingDocumentCollectionConnection! non-null object
InternalCreditTransfer.supportingDocumentCollections.first ● Int! non-null scalar
the number of elements to load (maximum: 100)
InternalCreditTransfer.supportingDocumentCollections.before ● String scalar
the index (a unique reference in string form) from which you will load the preceding elements
InternalCreditTransfer.supportingDocumentCollections.after ● String scalar
the index (a unique reference in string form) from which you will load the following elements
InternalCreditTransfer.supportingDocumentCollections.filters ● SupportingDocumentCollectionFilterInput input
a filtering table you can apply to your list of connections
Interfaces
Transaction interface
Transaction