v1

latestOpenAPI 3.0.12026-07-243686491.1 MB
Team Member Fees

Retrieve a single member fee for a team.

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

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

Path parameters

teamIdinteger required
idinteger required

Response

The requested 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"
}