action fraudlabspro_post_v1_order_feedback { label: "post_v1_order_feedback" description: "Feedback the status of an order transaction." provider: fraudlabspro method: POST path: "/v1/order/feedback" encoding: json input: { type: "object" properties: { action: { type: "string" enum: ["APPROVE", "REJECT", "REJECT_BLACKLIST"] } format: { type: "string" enum: ["json", "xml"] } id: { type: "string" } key: { type: "string" } notes: { type: "string" } } required: ["action", "id", "key"] additionalProperties: false } output: { type: "object" additionalProperties: true } }