action noosh_get_project_home_user_field_list_of_client { label: "List projec home user fields of client workgroup" description: "List projec home user fields of client workgroup" provider: noosh method: GET path: "/v1/workgroups/{workgroup_id}/clientWorkgroups/{client_workgroup_id}/projectHomeUserFields" 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.ProjectHomeUserFieldsListVO" properties: { results: { type: "array" items: { description: "Java type: com.noosh.nooshapi.vo.UserFieldsSimpleVO" properties: { is_required: { type: "boolean" } label: { type: "string" } ordinal_number: { type: "integer" format: "int64" } param_name: { type: "string" } type: { type: "string" } user_field_id: { type: "integer" format: "int64" } } } } status_code: { type: "integer" format: "int32" } status_reason: { type: "string" } } } }