action noosh_post_rfe { label: "Create a RFE" description: "Create a RFE" provider: noosh method: POST path: "/v1/workgroups/{workgroup_id}/projects/{project_id}/rfes" encoding: json input: { type: "object" properties: { description: { type: "string" } details: { type: "string" } estimate_due_date: { type: "string" format: "date" } project_id: { type: "string" } proposed_order_completion_date: { type: "string" format: "date" } rfe_number: { type: "string" } rfe_title: { type: "string" } specs: { type: "array" items: { description: "Java type: com.noosh.domain.nooshapi.persist.po.RfeSpecPO" properties: { quantity_1: { type: "integer" format: "int64" } quantity_2: { type: "integer" format: "int64" } quantity_3: { type: "integer" format: "int64" } quantity_4: { type: "integer" format: "int64" } quantity_5: { type: "integer" format: "int64" } spec_id: { type: "integer" format: "int64" } } } } supplier_user_ids: { type: "array" items: { type: "integer" format: "int64" } } workgroup_id: { type: "string" } } required: ["project_id", "workgroup_id"] additionalProperties: false } output: { description: "Java type: com.noosh.nooshapi.vo.RfqVO" properties: { rfq_id: { type: "integer" format: "int64" } status_code: { type: "integer" format: "int32" } status_reason: { type: "string" } } } }