action storecove_delete_peppol_identifier { label: "Delete PeppolIdentifier" description: "Delete a PeppolIdentifier." provider: storecove method: DELETE path: "/legal_entities/{legal_entity_id}/peppol_identifiers/{superscheme}/{scheme}/{identifier}" encoding: json input: { type: "object" properties: { identifier: { type: "string" } legal_entity_id: { type: "integer" format: "int64" } scheme: { type: "string" } superscheme: { type: "string" } } required: ["identifier", "legal_entity_id", "scheme", "superscheme"] additionalProperties: false } output: { type: "object" additionalProperties: true } }