---
title: "Update a team member fee."
method: PUT
path: "/api/v1/teams/{teamId}/member-fees/{id}"
tags: ["Team Member Fees"]
---

# Update a team member fee.

`PUT /api/v1/teams/{teamId}/member-fees/{id}`

Required scope: `team-members:write` </br>Organization authorization: `supported`

## Path parameters

- `teamId` integer, required
- `id` integer, required

## Request body

- UpdateTeamMemberFeeDto
  - `name` string, required — Name of the member fee.
  - `monthly_price` number, required — Monthly price charged per member, in the team's currency.

## Response `200`

The updated member fee.

- TeamMemberFeeDto
  - `id` integer — Unique identifier of the member fee.
  - `teamId` integer — Identifier of the team this fee belongs to.
  - `name` string, required — Name of the member fee.
  - `monthlyPrice` number, required — Monthly price charged per member, in the team's currency.
  - `memberCount` integer — Number of team members currently assigned to this fee.
  - `createdAt` string, nullable — Creation timestamp (ISO 8601).
  - `updatedAt` string, nullable — Last update timestamp (ISO 8601).

## Other responses

- `400` — The request is invalid
- `401` — Consumer with provided credentials was not found
- `403` — Operator doesn't have access to resource
- `404` — Entity with the provided id was not found

---

[API](https://skmtc.net/monta/apis/monta-partner-api.md) · [All operations](https://skmtc.net/monta/apis/monta-partner-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/monta/monta-partner-api/revisions/517e18f11015/schema)
