> Documentation index: [Saleor](/llms.txt) · [This section](/api-reference/checkout/llms.txt)
> Source: https://docs.saleor.io/api-reference/checkout/subscriptions/checkout-fully-paid

# checkoutFullyPaid Subscription

Event sent when checkout is fully-paid.

Added in Saleor 3.21

This API is currently in **Feature Preview** and can be subject to changes at later point.

```graphql
checkoutFullyPaid(
  channels: [String!]
): CheckoutFullyPaid
```

Details

```graphql
type CheckoutFullyPaid implements Event {
  issuedAt: DateTime
  version: String
  issuingPrincipal: IssuingPrincipal
  recipient: App
  checkout: Checkout
}
```

<a id="arguments"></a>

### Arguments

<a id="channels"></a>

#### [`channels`](#channels) ● [`[String!]`](/api-reference/miscellaneous/scalars/string.md)

List of channel slugs. The event will be sent only if the object belongs to one of the provided channels. If the channel slug list is empty, objects that belong to any channel will be sent. Maximally 500 items.

<a id="type"></a>

### Type

<a id="checkoutfullypaid"></a>

#### [`CheckoutFullyPaid`](/api-reference/checkout/objects/checkout-fully-paid.md)

Event sent when a checkout was fully paid. A checkout is considered fully paid when its `chargeStatus` is `FULL` or `OVERCHARGED`. This event is not sent if payments are only authorized but not fully charged.

It is triggered only for checkouts whose payments are processed through the Transaction API.
