# `Stripe.Services.ApplicationFeeService`
[🔗](https://github.com/jeffhuen/tiger_stripe/blob/main/lib/stripe/services/application_fee_service.ex#L2)

PlatformFee

# `list`

```elixir
@spec list(Stripe.Client.t(), map(), keyword()) ::
  {:ok, term()} | {:error, Stripe.Error.t()}
```

List all application fees

Returns a list of application fees you’ve previously collected. The application fees are returned in sorted order, with the most recent fees appearing first.

# `retrieve`

```elixir
@spec retrieve(Stripe.Client.t(), String.t(), map(), keyword()) ::
  {:ok, term()} | {:error, Stripe.Error.t()}
```

Retrieve an application fee

Retrieves the details of an application fee that your account has collected. The same information is returned when refunding the application fee.

---

*Consult [api-reference.md](api-reference.md) for complete listing*
