action noosh_get_file_tags { label: "List Tags from Workgroup and Project." description: "List Tags from Workgroup and Project." provider: noosh method: GET path: "/1.1/workgroups/{workgroup_id}/projects/{project_id}/fileTags" encoding: json input: { type: "object" properties: { project_id: { type: "string" } workgroup_id: { type: "string" } } required: ["project_id", "workgroup_id"] additionalProperties: false } output: { description: "Java type: com.noosh.nooshapi.vo.file.FileTagResponseVO" properties: { result: { type: "array" items: { description: "Java type: com.noosh.domain.collaboration.vo.TagRepoVO" properties: { isSpec: { type: "boolean" } tagId: { type: "integer" format: "int64" } tagName: { type: "string" } } } } status_code: { type: "integer" format: "int32" } status_reason: { type: "string" } } } }