action noosh_put_project { label: "Update a specific Project" description: "Update a specific Project" provider: noosh method: PUT path: "/v1/workgroups/{workgroup_id}/projects/{project_id}" 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.core.vo.HTTPStatusVO" properties: { status_code: { type: "integer" format: "int32" } status_reason: { type: "string" } } } }