action signl4_put_teams_team_id_profile { label: "Updates team profile of a team" provider: signl4 method: PUT path: "/teams/{teamId}/profile" encoding: json input: { type: "object" properties: { name: { type: "string" } teamId: { type: "string" } } required: ["teamId"] additionalProperties: false } output: { type: "object" properties: { id: { type: "string" } memberIds: { type: "array" items: { type: "string" } } name: { type: "string" } subscriptionId: { type: "string" } timezone: { type: "string" } } additionalProperties: false } }