action storecove_delete_legal_entity { label: "Delete LegalEntity" description: "Delete a specific LegalEntity." provider: storecove method: DELETE path: "/legal_entities/{id}" encoding: json input: { type: "object" properties: { id: { type: "integer" format: "int64" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }