Skip to main content

CardTransaction

Card transaction

type CardTransaction 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!
terminalId: String
originalAmount: Amount!
currencyExchange: [ReportExchangeRate!]!
merchant: CardMerchant
cardDetails: CardDetails
authorizationType: AuthorizationType
account: Account
externalReference: String
executionDate: DateTime!
requestedExecutionAt: DateTime
originTransactionId: String
originTransaction: Transaction
enrichedTransactionInfo: EnrichedTransactionInfo
transactionTransportType: TransactionTransportType
statementCanBeGenerated: Boolean
projectId: ID!
reservedAmount: Amount
reservedAmountReleasedAt: DateTime
supportingDocumentCollections(
first: Int! = 50
before: String
after: String
filters: SupportingDocumentCollectionFilterInput
): SupportingDocumentCollectionConnection!
}

Fields

CardTransaction.id ● ID! non-null scalar

unique identifier of the transaction

CardTransaction.reference ● String! non-null scalar

external identifier of the transaction

CardTransaction.paymentMethodIdentifier ● String! non-null scalar

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

CardTransaction.side ● TransactionSide! non-null enum

side (Credit or Debit)

CardTransaction.type ● TransactionTypeEnum! non-null enum

type

CardTransaction.amount ● Amount! non-null object

amount

CardTransaction.label ● String! non-null scalar

label

CardTransaction.statusInfo ● TransactionStatusInfo! non-null interface

status information

CardTransaction.paymentId ● String scalar

ID of the payment associated to this transaction

CardTransaction.payment ● Payment object

payment associated to this transaction

CardTransaction.createdAt ● DateTime! non-null scalar

created date

CardTransaction.updatedAt ● DateTime! non-null scalar

updated date

CardTransaction.counterparty ● String! non-null scalar

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

CardTransaction.bookedBalanceAfter ● Amount object

booked balance after this transaction

CardTransaction.paymentProduct ● PaymentProduct! non-null enum

payment product used for this transaction

CardTransaction.terminalId ● String scalar

unique identifier of the terminal

CardTransaction.originalAmount ● Amount! non-null object

original amount and currency of the transaction

CardTransaction.currencyExchange ● [ReportExchangeRate!]! non-null object

currency exchange if any

CardTransaction.merchant ● CardMerchant union

merchant associated

CardTransaction.cardDetails ● CardDetails union

cardDetails associated

CardTransaction.authorizationType ● AuthorizationType enum

type of the authorization. Only available for:

  • authorization transaction
  • debit transaction linked to a previous authorization transaction

CardTransaction.account ● Account object

matching account for the transaction

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

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

CardTransaction.requestedExecutionAt ● DateTime scalar

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

CardTransaction.originTransactionId ● String scalar

ID of the origin transaction associated to this transaction

CardTransaction.originTransaction ● Transaction interface

origin transaction associated to this transaction

CardTransaction.enrichedTransactionInfo ● EnrichedTransactionInfo object

enriched data of the merchant

CardTransaction.transactionTransportType ● TransactionTransportType enum

indicator of the transit type used (optional)

CardTransaction.statementCanBeGenerated ● Boolean scalar

true if a transaction statement can be generated for this transaction

CardTransaction.projectId ● ID! non-null scalar

project id of the transaction

CardTransaction.reservedAmount ● Amount object

reserved amount of the transaction computed with the rolling reserve.

CardTransaction.reservedAmountReleasedAt ● DateTime scalar

date on which reserved funds become available.

CardTransaction.supportingDocumentCollections ● SupportingDocumentCollectionConnection! non-null object

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

the number of elements to load (maximum: 100)

CardTransaction.supportingDocumentCollections.before ● String scalar

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

CardTransaction.supportingDocumentCollections.after ● String scalar

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

CardTransaction.supportingDocumentCollections.filters ● SupportingDocumentCollectionFilterInput input

a filtering table you can apply to your list of connections

Interfaces

Transaction interface

Transaction