action threatjammer_delete_the_allowlist_v1_allowlist_private_allowlist_id_delete { label: "Delete all the bindings between a user and a private allowlist." description: "### What\nDelete all the bindings between a user and a private allowlist. This will remove the content of the allowlist, the allowlist from the user and also all the origins that are using the allowlist.\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\n### Parameters\nIn the query string the ID of the private allow 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 error.\n- If the allow 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/allowlist/private/{allowlist_id}" encoding: json input: { type: "object" properties: { allowlist_id: { type: "string" format: "uuid" } } required: ["allowlist_id"] additionalProperties: false } output: { type: "object" } }