## Unrevoke registrations `zero_trust.devices.registrations.unrevoke(RegistrationUnrevokeParams**kwargs) -> object` **post** `/accounts/{account_id}/devices/registrations/unrevoke` Unrevokes a list of WARP registrations. ### Parameters - `account_id: str` - `id: SequenceNotStr[str]` A list of registration IDs to unrevoke. ### Returns - `object` ### Example ```python import os from cloudflare import Cloudflare client = Cloudflare( api_token=os.environ.get("CLOUDFLARE_API_TOKEN"), # This is the default and can be omitted ) response = client.zero_trust.devices.registrations.unrevoke( account_id="account_id", id=["string"], ) print(response) ``` #### Response ```json { "errors": [ { "code": 0, "message": "message" } ], "messages": [ { "code": 0, "message": "message" } ], "result": {}, "success": true, "result_info": { "count": 1, "cursor": "ais86dftf.asdf7ba8", "per_page": 10, "total_count": null } } ```