---
title: "Get a fee schedule"
method: GET
path: "/v1/fee-schedules/{scheduleId}"
tags: ["Configuration Fee Schedules"]
---

# Get a fee schedule

`GET /v1/fee-schedules/{scheduleId}`

Use this endpoint to retrieve the details of a specific fee schedule by its identifier.

## Path parameters

- `scheduleId` string, required

## Headers

- `X-Request-Id` string

## Response `200`

Successfully retrieved fee schedule

- FeeScheduleResponse — Fee schedule with its fee items
  - `id` string, uuid — Unique identifier for the fee schedule
  - `tenantId` string, uuid — Tenant that owns this fee schedule
  - `name` string — Display name for the fee schedule
  - `currency` string — Currency code (ISO 4217)
  - `applicationOrder` 'PARALLEL' | 'CASCADING' — Determines how multiple fee items compose within a schedule
  - `roundingScale` integer — Number of decimal places for rounding
  - `roundingMode` 'HALF_UP' | 'BANKERS' | 'FLOOR' | 'CEIL' | 'TRUNCATE' — Determines how intermediate fee calculations are rounded
  - `items` FeeScheduleItemResponse[] — Fee items in this schedule
    - `id` string, uuid — Unique identifier for the fee item
    - `name` string — Display name for the fee item
    - `priority` integer — Execution priority (lower numbers run first)
    - `structureType` 'FLAT' | 'PERCENTAGE' | 'TIERED' — Type of fee structure for a fee schedule item
    - `structure` object — Fee structure definition (varies by structureType)
    - `createdAt` string, date-time — Creation timestamp in RFC 3339 format
    - `updatedAt` string, date-time — Last update timestamp in RFC 3339 format
  - `createdAt` string, date-time — Creation timestamp in RFC 3339 format
  - `updatedAt` string, date-time — Last update timestamp in RFC 3339 format

## Other responses

- `400` — Invalid schedule ID
- `401` — The request lacks valid authentication credentials.
- `403` — You do not have permission to access this resource.
- `404` — Fee schedule not found
- `500` — An unexpected error occurred on the server.

---

[API](https://skmtc.net/lerian/apis/identity-plugin.md) · [All operations](https://skmtc.net/lerian/apis/identity-plugin/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/lerian/identity-plugin/versions/25daba385532/schema)
