action threatjammer_delete_the_denylist_v1_denylist_private_denylist_id_delete { label: "Delete all the bindings between a user and a private denylist." description: "### What\nDelete all the bindings between a user and a private denylist. This will remove the content of the denylist, the denylist from the user and also all the origins that are using the denylist.\n\nThis is an asynchronous operation. It can take several seconds until the operation completes, but the request willimmediately return a 202 Accepted response.\n\nThe default lists ``External sources reported CIDRs`` and ``Default denylist`` cannot be deleted, but can be emptied. Please refer to the documentation to delete the content.\n\n### Parameters\nIn the query string the ID of the private deny list to delete.\n\n### Result\nIt should always return a 202 Accepted response with an empty body.\n\n### Errors\n\n- If the list does not exist, it will return a `404` (Not found) error.\n- If the list is a default list, it will return a `403` (Forbidden) error.\n- If the deny list is not a valid UUID, it will return a `422` (Unprocessable Entity) error.\n\nIt will return the API Global errors described in the API description." provider: threatjammer method: DELETE path: "/v1/denylist/private/{denylist_id}" encoding: json input: { type: "object" properties: { denylist_id: { type: "string" format: "uuid" } } required: ["denylist_id"] additionalProperties: false } output: { type: "object" } }