Skip to main content

FeeTransaction

Fee Transaction

type FeeTransaction implements Transaction {
id: ID!
supportingDocumentCollections(
first: Int! = 50
before: String
after: String
filters: SupportingDocumentCollectionFilterInput
): SupportingDocumentCollectionConnection!
reference: String!
paymentMethodIdentifier: String!
side: TransactionSide!
type: TransactionTypeEnum!
amount: Amount!
label: String!
feesType: FeesTypeEnum!
statusInfo: TransactionStatusInfo!
paymentId: String
payment: Payment
createdAt: DateTime!
updatedAt: DateTime!
counterparty: String!
bookedBalanceAfter: Amount
paymentProduct: PaymentProduct!
creditor: FeeCreditor!
debtor: FeeDebtor!
account: Account
externalReference: String
executionDate: DateTime!
requestedExecutionAt: DateTime
originTransactionId: String
originTransaction: Transaction
}

Fields

FeeTransaction.id ● ID! non-null scalar

unique identifier of the transaction

FeeTransaction.supportingDocumentCollections ● SupportingDocumentCollectionConnection! non-null object

FeeTransaction.supportingDocumentCollections.first ● Int! non-null scalar

the number of elements to load (maximum: 100)

FeeTransaction.supportingDocumentCollections.before ● String scalar

the index (a unique reference in string form) from which you will load the preceding elements

FeeTransaction.supportingDocumentCollections.after ● String scalar

the index (a unique reference in string form) from which you will load the following elements

FeeTransaction.supportingDocumentCollections.filters ● SupportingDocumentCollectionFilterInput input

a filtering table you can apply to your list of connections

FeeTransaction.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.

FeeTransaction.paymentMethodIdentifier ● String! non-null scalar

payment method identifier used for this transaction. e.g masked PAN or IBAN or accountNumber

FeeTransaction.side ● TransactionSide! non-null enum

side (Credit or Debit)

FeeTransaction.type ● TransactionTypeEnum! non-null enum

type

FeeTransaction.amount ● Amount! non-null object

amount

FeeTransaction.label ● String! non-null scalar

label

FeeTransaction.feesType ● FeesTypeEnum! non-null enum

feesType

FeeTransaction.statusInfo ● TransactionStatusInfo! non-null interface

status information

FeeTransaction.paymentId ● String scalar

ID of the payment associated to this transaction

FeeTransaction.payment ● Payment object

payment associated to this transaction

FeeTransaction.createdAt ● DateTime! non-null scalar

created date

FeeTransaction.updatedAt ● DateTime! non-null scalar

updated date

FeeTransaction.counterparty ● String! non-null scalar

name of the counterparty. e.g Merchant name, Creditor name, Beneficiary Name ...

FeeTransaction.bookedBalanceAfter ● Amount object

booked balance after this transaction

FeeTransaction.paymentProduct ● PaymentProduct! non-null enum

payment product used for this transaction

FeeTransaction.creditor ● FeeCreditor! non-null interface

creditor information

FeeTransaction.debtor ● FeeDebtor! non-null interface

debtor information

FeeTransaction.account ● Account object

matching account for the transaction

FeeTransaction.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.

FeeTransaction.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.

FeeTransaction.requestedExecutionAt ● DateTime scalar

a date that reflects the time at which the user asked the transaction to be executed

FeeTransaction.originTransactionId ● String scalar

ID of the origin transaction associated to this transaction

FeeTransaction.originTransaction ● Transaction interface

origin transaction associated to this transaction

Interfaces

Transaction interface

Transaction