action storecove_create_received_document { label: "Create a new received document" description: "Create a new received document." provider: storecove method: POST path: "/received_documents" encoding: json input: { properties: { document: { type: "string" description: "The Base64 encoded document." } legal_entity_id: { type: "integer" format: "int64" description: "The of the LegalEntity this document was received for." } parseStrategy: { type: "string" description: "The attachment content type (mime type)." enum: ["rfc822"] } } } output: { properties: { guid: { type: "string" format: "uuid" description: "The GUID of the received document" } } } }