---
title: "Get fee waivers for a user within a date range"
method: POST
path: "/programs/{programCode}/accounts/{accountIdentifier}/GetFeeWaivers"
tags: ["Fee"]
---

# Get fee waivers for a user within a date range

`POST /programs/{programCode}/accounts/{accountIdentifier}/GetFeeWaivers`

Retrieves the list of fees waived for a user between the specified start and end dates.

## Path parameters

- `programCode` string, required
- `accountIdentifier` string, required

## Headers

- `X-GD-RequestId` string, required

## Request body

- GetFeeWaiversRequest — Represents a request to retrieve fee waivers for a specific account within a date range. Contains account identifier and required start/end dates for the query. Inherits standard request metadata from Gd.Bos.DataTransfer.Request.RequestBase.
  - `startDate` string, required — The start date (inclusive) for the fee waiver query, formatted as a string (e.g., "yyyy-MM-dd").
  - `endDate` string, required — The end date (inclusive) for the fee waiver query, formatted as a string (e.g., "yyyy-MM-dd").

## Response `201`

Created

- GetFeeWaiversResponse — Represents the response returned after retrieving fee waivers for an account or transaction. Contains an array of waived fee details. Inherits standard response metadata from Gd.Bos.DataTransfer.Response.ResponseBase.
  - `waivedFees` WaivedFee[], nullable — The array of waived fee details. Each Gd.Bos.DataTransfer.Response.ResponseObjects.WaivedFee includes the amount waived, description, date waived, transaction type, and transaction status.
    - `feeAmountWaived` number, double — The amount of the fee that was waived.
    - `description` string, nullable — The description of the waived fee.
    - `dateWaived` string, nullable — The date the fee was waived, formatted as a string (e.g., "yyyy-MM-dd").
    - `transactionType` string, nullable — The type of transaction associated with the waived fee (e.g., "ACH", "Check").
    - `transactionStatus` string, nullable — The status of the transaction associated with the waived fee (e.g., "Completed", "Pending").
  - `responseDetails` ResponseDetail[], nullable — Required: A list of response details providing status codes, descriptions, and additional information about the result of the operation.
    - `code` integer — The primary status or error code for the response (e.g., 200 for success, 400 for validation error).
    - `subCode` integer, nullable — An optional subcode providing more granular detail about the response or error.
    - `description` string, nullable — A human-readable description of the response, error, or status.
    - `url` string, nullable — A URL linking to documentation or a web page with more information about the response code.

## Other responses

- `401` — Unauthorized
- `403` — Forbidden
- `500` — Internal Server Error
- `503` — Service Unavailable

---

[API](https://skmtc.net/greendot/apis/baas-apis.md) · [All operations](https://skmtc.net/greendot/apis/baas-apis/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/greendot/baas-apis/revisions/666553766b78/schema)
