Skip to main content

NexiTransaction

No description

type NexiTransaction implements Transaction {
amount: Float
createdAt: ISO8601DateTime
currency: String
disputes: [Dispute!]
exchangeRate: Float
failedAt: ISO8601DateTime
fees: [PaymentTransactionFee!]
id: ID
number: String
order: Order
referenceCode: String
refundTransactions: [Transaction!]
repaymentRequest: RepaymentRequest
saleTransaction: Transaction
startedAt: ISO8601DateTime
status: PaymentTransactionStatus
transactedAt: ISO8601DateTime
updatedAt: ISO8601DateTime
}

Fields

NexiTransaction.amount ● Float scalar

The transaction amount. Negative amounts are refund records.

NexiTransaction.createdAt ● ISO8601DateTime scalar

When the record was created.

NexiTransaction.currency ● String scalar

The transaction currency, as an ISO 4217 code.

NexiTransaction.disputes ● [Dispute!] list interface

The disputes linked to the transaction (for example chargebacks opened by the payment provider).

NexiTransaction.exchangeRate ● Float scalar

The exchange rate reported by the payment provider, when available.

NexiTransaction.failedAt ● ISO8601DateTime scalar

When the transaction failed.

NexiTransaction.fees ● [PaymentTransactionFee!] list object

The provider fee rows recorded for the transaction.

NexiTransaction.id ● ID scalar

The unique identifier of the record.

NexiTransaction.number ● String scalar

The transaction number/ID assigned by the payment provider.

NexiTransaction.order ● Order object

The order the transaction is linked to, when the transaction has been matched through its referenceCode. Null otherwise.

NexiTransaction.referenceCode ● String scalar

References the order or the repayment request (return) the transaction belongs to.

NexiTransaction.refundTransactions ● [Transaction!] list interface

The refund transactions of this transaction: child transactions linked to the original payment.

NexiTransaction.repaymentRequest ● RepaymentRequest object

The repayment request (return) the transaction is linked to, when the transaction has been matched through its referenceCode. Null otherwise.

NexiTransaction.saleTransaction ● Transaction interface

For a refund transaction, the original sale transaction being refunded.

NexiTransaction.startedAt ● ISO8601DateTime scalar

When the transaction was started.

NexiTransaction.status ● PaymentTransactionStatus enum

The transaction status.

NexiTransaction.transactedAt ● ISO8601DateTime scalar

When the transaction was completed.

NexiTransaction.updatedAt ● ISO8601DateTime scalar

When the record was last updated.

Interfaces

Transaction interface