action storecove_create_administration { label: "Create a new Administration" description: "Deprecated. Create a new Administration. An Administration is an email destination for purchase invoices." provider: storecove method: POST path: "/legal_entities/{legal_entity_id}/administrations" encoding: json input: { type: "object" properties: { email: { type: "string" description: "The email address to send the received document to" } legal_entity_id: { type: "integer" format: "int64" } package_version: { type: "string" description: "The version of the package." enum: ["peppol_bis_v3", "aunz", "sg"] } packaging: { type: "string" description: "How to package the purchase invoice." enum: ["ubl"] } sender_email_identity_id: { type: "integer" format: "int64" description: "The id of the SenderEmailIdentity. If not provided, the Storecove default sender will be used" } } required: ["legal_entity_id"] additionalProperties: false } output: { properties: { email: { type: "string" description: "The email address to send the received document to" } id: { type: "integer" format: "int64" description: "The Storecove assigned id for the Administration." } legal_entity_id: { type: "integer" format: "int64" description: "The LegalEntity the Administration belongs to." } package_version: { type: "string" description: "The version of the package." enum: ["peppol_bis_v3", "aunz", "sg"] } packaging: { type: "string" description: "How to package the purchase invoice." enum: ["ubl"] } sender_email_identity_id: { type: "integer" format: "int64" description: "The id of the SenderEmailIdentity. If not provided, the Storecove default sender will be used" } } } }