action akeneo_delete_app_catalog { label: "Delete a catalog" description: "This endpoint allows you to delete a catalog." provider: akeneo method: DELETE path: "/api/rest/v1/catalogs/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }