action threatjammer_delete_the_allowlist_content_v1_allowlist_private_allowlist_id_c { label: "Delete all the content of a private allowlist of the user." description: "### What\nDelete all the content of a private allowlist of the user. This will remove all the elements, and there is no way to recover them.\n\n### Parameters\nPass the private allowlist 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 allow list is not a valid UUID, it will return a ``422`` (Unprocessable Entity) error.\n- If the private allowlist 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/allowlist/private/{allowlist_id}/content" encoding: json input: { type: "object" properties: { allowlist_id: { type: "string" format: "uuid" } } required: ["allowlist_id"] additionalProperties: false } output: { type: "object" } }