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

Benefit-grants

BenefitGrants API operations.

# `get_benefit_grant`

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

Get Benefit Grant

Get a benefit grant by ID for the authenticated customer.

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

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

# `list_benefit_grants`

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

List Benefit Grants

List benefits grants of the authenticated customer.

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

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

# `update_benefit_grant`

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

Update Benefit Grant

Update a benefit grant for the authenticated customer.

**Scopes**: `customer_portal:write`

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

---

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