action storecove_get_received_document { label: "Get a new ReceivedDocument" description: "EXPERIMENTAL: use only for orders. Get a new ReceivedDocument." provider: storecove method: GET path: "/received_documents/{guid}/{format}" encoding: json input: { type: "object" properties: { format: { type: "string" } guid: { type: "string" format: "uuid" } syntax: { type: "string" enum: ["json", "original"] } } required: ["format", "guid", "syntax"] additionalProperties: false } output: { properties: { guid: { type: "string" format: "uuid" description: "The GUID of the received document" } } } }