action noosh_get_team_template_detail { label: "Get current user's team template detal info " description: "Get current user's team template detal info " provider: noosh method: GET path: "/v1/workgroups/{workgroup_id}/teamTemplates/{team_template_id}" encoding: json input: { type: "object" properties: { team_template_id: { type: "string" } workgroup_id: { type: "string" } } required: ["team_template_id", "workgroup_id"] additionalProperties: false } output: { description: "Java type: com.noosh.nooshapi.vo.TeamTemplateExpandVO" properties: { results: { description: "Java type: com.noosh.nooshapi.vo.TeamTemplateDetailVO" properties: { team_teample_item: { type: "array" items: { description: "Java type: com.noosh.nooshapi.vo.TeamTemplateItemVO" properties: { role: { description: "Java type: com.noosh.nooshapi.vo.RoleSimpleVO" properties: { role_id: { type: "integer" format: "int64" } role_name: { type: "string" } } } user: { description: "Java type: com.noosh.nooshapi.vo.UserPersonVO" properties: { email: { type: "string" } first_name: { type: "string" } last_name: { type: "string" } middle_name: { type: "string" } user_id: { type: "integer" format: "int64" } } } } } } team_template_id: { type: "integer" format: "int64" } team_template_name: { type: "string" } } } status_code: { type: "integer" format: "int32" } status_reason: { type: "string" } } } }