# `PolarExpress.Services.CustomerSeatsService`
[🔗](https://github.com/jeffhuen/polar_express/blob/main/lib/polar_express/services/customer_seats_service.ex#L2)

Customer-seats

CustomerSeats API operations.

# `assign_seat`

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

Assign Seat

**Scopes**: `customer_seats:write`

See `PolarExpress.Params.CustomerSeatsAssignSeatParams` for parameter details.

# `claim_seat`

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

Claim Seat

See `PolarExpress.Params.CustomerSeatsClaimSeatParams` for parameter details.

# `get_claim_info`

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

Get Claim Info

See `PolarExpress.Params.CustomerSeatsGetClaimInfoParams` 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_seats:write`

See `PolarExpress.Params.CustomerSeatsListSeatsParams` 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

**Scopes**: `customer_seats:write`

See `PolarExpress.Params.CustomerSeatsResendInvitationParams` 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

**Scopes**: `customer_seats:write`

See `PolarExpress.Params.CustomerSeatsRevokeSeatParams` for parameter details.

---

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