action threatjammer_delete_the_denylist_content_v1_denylist_private_denylist_id_cont { label: "Delete all the content of a private denylist of the user." description: "### What\nDelete all the content of a private denylist of the user. This will remove all the elements, and there is no way to recover them.\n\n### Parameters\nPass the private denylist ID as query parameter.\n\n### Result\nIf successful, it will return a ``202`` (Accepted) response with an empty body. The operation is asynchronous,and can take several seconds to complete.\n\n### Errors\n\n- If the deny list is not a valid UUID, it will return a ``422`` (Unprocessable Entity) error.\n- If the private denylist ID does not exist, it will return a ``404`` (Not found) error.\n\nIt will also return the API Global errors described in the API description." provider: threatjammer method: DELETE path: "/v1/denylist/private/{denylist_id}/content" encoding: json input: { type: "object" properties: { denylist_id: { type: "string" format: "uuid" } } required: ["denylist_id"] additionalProperties: false } output: { type: "object" } }