> Documentation index: [Saleor](/llms.txt) · [This section](/api-reference/payments/llms.txt)
> Source: https://docs.saleor.io/api-reference/payments/objects/transaction-summary

# TransactionSummary Object

Customer-facing summary of a single payment transaction. Exposes the payment method and the amounts, without the identifiers, events and actions available on `TransactionItem`.

Added in Saleor 3.23

```graphql
type TransactionSummary {
  createdAt: DateTime!
  paymentMethodDetails: PaymentMethodDetails
  authorizedAmount: Money!
  authorizePendingAmount: Money!
  chargedAmount: Money!
  chargePendingAmount: Money!
  refundedAmount: Money!
  canceledAmount: Money!
}
```

<a id="fields"></a>

### Fields

<a id="created-at"></a>

#### [`createdAt`](#created-at) ● [`DateTime!`](/api-reference/miscellaneous/scalars/date-time.md)

Date and time at which payment transaction was created.

<a id="payment-method-details"></a>

#### [`paymentMethodDetails`](#payment-method-details) ● [`PaymentMethodDetails`](/api-reference/miscellaneous/interfaces/payment-method-details.md)

The payment method used for this transaction. As this field is public, card number digits and expiration date are stripped: `firstDigits`, `lastDigits`, `expMonth` and `expYear` of `CardPaymentMethodDetails` are always `null` here. Read them through `Order.transactions` instead, which requires MANAGE\_ORDERS or HANDLE\_PAYMENTS.

<a id="authorized-amount"></a>

#### [`authorizedAmount`](#authorized-amount) ● [`Money!`](/api-reference/miscellaneous/objects/money.md)

Total amount authorized for this payment.

<a id="authorize-pending-amount"></a>

#### [`authorizePendingAmount`](#authorize-pending-amount) ● [`Money!`](/api-reference/miscellaneous/objects/money.md)

Total amount of ongoing authorization requests for the transaction.

<a id="charged-amount"></a>

#### [`chargedAmount`](#charged-amount) ● [`Money!`](/api-reference/miscellaneous/objects/money.md)

Total amount charged for this payment.

<a id="charge-pending-amount"></a>

#### [`chargePendingAmount`](#charge-pending-amount) ● [`Money!`](/api-reference/miscellaneous/objects/money.md)

Total amount of ongoing charge requests for the transaction.

<a id="refunded-amount"></a>

#### [`refundedAmount`](#refunded-amount) ● [`Money!`](/api-reference/miscellaneous/objects/money.md)

Total amount refunded for this payment.

<a id="canceled-amount"></a>

#### [`canceledAmount`](#canceled-amount) ● [`Money!`](/api-reference/miscellaneous/objects/money.md)

Total amount canceled for this payment.

<a id="member-of"></a>

### Member Of

[`Order`](/api-reference/orders/objects/order.md) object
