action storecove_receive_documenht { label: "Receive a new Document" description: "DEPRECATED - use new path /received_documents. Receive a new Document." provider: storecove method: POST path: "/legal_entities/{legal_entity_id}/received_documents" encoding: json input: { type: "object" properties: { document: { type: "string" description: "The Base64 encoded document." } legal_entity_id: { type: "integer" format: "int64" } parseStrategy: { type: "string" description: "The attachment content type (mime type)." enum: ["rfc822"] } } required: ["legal_entity_id"] additionalProperties: false } output: { properties: { guid: { type: "string" format: "uuid" description: "The GUID of the received document" } } } }