action threatjammer_delete_the_denylist_v1_denylist_public_denylist_id_delete { label: "Delete all the bindings between a user and an denylist." description: "### What\nDelete all the bindings between a user and an denylist. This will remove the denylist from the user and also all the origins that are using the denylist.\n\n This is an asynchronous operation. It can take several seconds until the operation completes, but the request will immediately return a 202 Accepted response.\n\n### Parameters\nIn the query string the ID of the deny list to change the status.\n\n### Result\nIt should always return a 202 Accepted response with an empty body.\n\n### Errors\n\nIf the list does not exist, it will return a 404 error.\nIf the deny list is not a valid UUID, it will return a 422 error.\n\nIt will return the API Global errors described in the API description." provider: threatjammer method: DELETE path: "/v1/denylist/public/{denylist_id}" encoding: json input: { type: "object" properties: { denylist_id: { type: "string" format: "uuid" } } required: ["denylist_id"] additionalProperties: false } output: { type: "object" } }