action noosh_get_team_template_list { label: "List current user's team templates info " description: "List current user's team templates info " provider: noosh method: GET path: "/v1/workgroups/{workgroup_id}/teamTemplates" encoding: json input: { type: "object" properties: { workgroup_id: { type: "string" } } required: ["workgroup_id"] additionalProperties: false } output: { description: "Java type: com.noosh.nooshapi.vo.TeamTemplateListVO" properties: { results: { type: "array" items: { description: "Java type: com.noosh.nooshapi.vo.TeamTemplateSimpleVO" properties: { team_template_id: { type: "integer" format: "int64" } team_template_name: { type: "string" } } } } status_code: { type: "integer" format: "int32" } status_reason: { type: "string" } } } }