action noosh_get_project_status_of_client { label: "List the project status of client" description: "List the project status of client" provider: noosh method: GET path: "/v1/workgroups/{workgroup_id}/clientWorkgroups/{client_workgroup_id}/projectStatus" 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.ProjectStatusListVO" properties: { results: { type: "array" items: { description: "Java type: com.noosh.nooshapi.vo.ProjectStatusSimpleVO" properties: { project_status_id: { type: "integer" format: "int64" } project_status_name: { type: "string" } } } } status_code: { type: "integer" format: "int32" } status_reason: { type: "string" } } } }