action noosh_get_project_category_list_of_client { label: "List the project categories of client side" description: "List the project categories of client side" provider: noosh method: GET path: "/v1/workgroups/{workgroup_id}/clientWorkgroups/{client_workgroup_id}/projectCategory" encoding: json input: { type: "object" properties: { client_workgroup_id: { type: "string" } workgroup_id: { type: "string" } } required: ["client_workgroup_id", "workgroup_id"] additionalProperties: false } output: { description: "Java type: com.noosh.nooshapi.vo.ProjectCategoryListVO" properties: { results: { type: "array" items: { description: "Java type: com.noosh.nooshapi.vo.ProjectCategorySimpleVO" properties: { project_category_id: { type: "integer" format: "int64" } project_category_name: { type: "string" } } } } status_code: { type: "integer" format: "int32" } status_reason: { type: "string" } } } }