v1

latestOpenAPI 3.0.12026-07-243686491.1 MB
Team Member Fees

Update a team member fee.

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

put/api/v1/teams/{teamId}/member-fees/{id}

Path parameters

teamIdinteger required
idinteger required

Request body

namestring required

Name of the member fee.

monthly_pricenumber required

Monthly price charged per member, in the team's currency.

Example request

{
  "name": "Standard monthly fee",
  "monthly_price": 5.67
}

Response

The updated member fee.

idinteger

Unique identifier of the member fee.

teamIdinteger

Identifier of the team this fee belongs to.

namestring required

Name of the member fee.

monthlyPricenumber required

Monthly price charged per member, in the team's currency.

memberCountinteger

Number of team members currently assigned to this fee.

createdAtstring nullable

Creation timestamp (ISO 8601).

updatedAtstring nullable

Last update timestamp (ISO 8601).

Example response

{
  "id": 1,
  "teamId": 42,
  "name": "Standard monthly fee",
  "monthlyPrice": 5.67,
  "memberCount": 12,
  "createdAt": "2024-01-01T12:00:00Z",
  "updatedAt": "2024-01-01T12:00:00Z"
}