action noosh_put_quote { label: "Accept / Reject a Quote" description: "Accept / Reject a Quote" provider: noosh method: PUT path: "/v1/workgroups/{workgroup_id}/projects/{project_id}/quotes/{quote_id}" encoding: json input: { type: "object" properties: { action: { type: "string" } po_number: { type: "string" } project_id: { type: "string" } quote_id: { type: "string" } state_change_comments: { type: "string" } workgroup_id: { type: "string" } } required: ["project_id", "quote_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" } } } }