action threatjammer_delete_the_allowlist_v1_allowlist_public_allowlist_id_delete { label: "Delete all the bindings between a user and an allowlist." description: "### What\nDelete all the bindings between a user and an allowlist. This will remove the allowlist from the user and also all the origins that are using the allowlist.\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 allow 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 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/public/{allowlist_id}" encoding: json input: { type: "object" properties: { allowlist_id: { type: "string" format: "uuid" } } required: ["allowlist_id"] additionalProperties: false } output: { type: "object" } }