# `PolarExpress.Services.CustomerPortal.SeatsService`
[🔗](https://github.com/jeffhuen/polar_express/blob/main/lib/polar_express/services/customer_portal/seats_service.ex#L2)

Seats

Seats API operations.

# `assign_seat`

```elixir
@spec assign_seat(PolarExpress.Client.t(), map(), keyword()) ::
  {:ok, PolarExpress.Schemas.CustomerSeat.t()}
  | {:error, PolarExpress.Error.t()}
```

Assign Seat

See `PolarExpress.Params.CustomerPortal.SeatsAssignSeatParams` for parameter details.

# `list_claimed_subscriptions`

```elixir
@spec list_claimed_subscriptions(PolarExpress.Client.t(), map(), keyword()) ::
  {:ok, PolarExpress.ListObject.t()} | {:error, PolarExpress.Error.t()}
```

List Claimed Subscriptions

List all subscriptions where the authenticated customer has claimed a seat.

**Scopes**: `customer_portal:read` `customer_portal:write`

See `PolarExpress.Params.CustomerPortal.SeatsListClaimedSubscriptionsParams` for parameter details.

# `list_seats`

```elixir
@spec list_seats(PolarExpress.Client.t(), map(), keyword()) ::
  {:ok, PolarExpress.Schemas.SeatsList.t()} | {:error, PolarExpress.Error.t()}
```

List Seats

**Scopes**: `customer_portal:read` `customer_portal:write`

See `PolarExpress.Params.CustomerPortal.SeatsListSeatsParams` for parameter details.

# `resend_invitation`

```elixir
@spec resend_invitation(PolarExpress.Client.t(), String.t(), map(), keyword()) ::
  {:ok, PolarExpress.Schemas.CustomerSeat.t()}
  | {:error, PolarExpress.Error.t()}
```

Resend Invitation

See `PolarExpress.Params.CustomerPortal.SeatsResendInvitationParams` for parameter details.

# `revoke_seat`

```elixir
@spec revoke_seat(PolarExpress.Client.t(), String.t(), map(), keyword()) ::
  {:ok, PolarExpress.Schemas.CustomerSeat.t()}
  | {:error, PolarExpress.Error.t()}
```

Revoke Seat

See `PolarExpress.Params.CustomerPortal.SeatsRevokeSeatParams` for parameter details.

---

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