action alertersystem_api_team_member_role_code_id_get { label: "Retrieves a TeamMemberRoleCode resource." description: "Retrieves a TeamMemberRoleCode resource." provider: alertersystem method: GET path: "/api/team-member-role-code/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" description: "The TeamMemberRoleCode resource is a set of codes that describes the different roles that can be assigned to team members of partitions." properties: { codeDescription: { type: "string" } id: { type: "string" } } } }