action noosh_patch_project { label: "Patch a specific Project" description: "Patch a specific Project" provider: noosh method: PATCH path: "/v1/workgroups/{workgroup_id}/projects/{project_id}" encoding: json input: { type: "object" properties: { client_user_id: { type: "integer" format: "int64" } client_workgroup_id: { type: "integer" format: "int64" } comments: { type: "string" } completion_date: { type: "string" format: "date" } custom_fields: { type: "array" items: { description: "Java type: com.noosh.domain.nooshapi.persist.vo.CustomFieldPersistVO" properties: { date_value: { type: "string" format: "date" } number_value: { description: "Java type: java.math.BigDecimal" type: "object" } param_name: { type: "string" } string_value: { type: "string" } } } } deactivation_reason_id: { type: "integer" format: "int64" } is_active: { type: "boolean" } is_hot: { type: "boolean" } project_category_id: { type: "integer" format: "int64" } project_description: { type: "string" } project_id: { type: "string" } project_name: { type: "string" } project_number: { type: "string" } project_status_id: { type: "integer" format: "int64" } workgroup_id: { type: "string" } } required: ["project_id", "workgroup_id"] additionalProperties: false } output: { description: "Java type: com.noosh.core.vo.HTTPStatusVO" properties: { status_code: { type: "integer" format: "int32" } status_reason: { type: "string" } } } }