action maif_delete_cert { label: "Delete one certificate by id" description: "Delete one certificate by id" provider: maif method: DELETE path: "/api/certificates/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" required: ["deleted"] properties: { deleted: { type: "boolean" } } } }