## Rerun the Activation Check `client.zones.activationCheck.trigger(ActivationCheckTriggerParamsparams, RequestOptionsoptions?): ActivationCheckTriggerResponse` **put** `/zones/{zone_id}/activation_check` Triggeres a new activation check for a PENDING Zone. This can be triggered every 5 min for paygo/ent customers, every hour for FREE Zones. ### Parameters - `params: ActivationCheckTriggerParams` - `zone_id: string` Identifier. ### Returns - `ActivationCheckTriggerResponse` - `id?: string` Identifier. ### Example ```node import Cloudflare from 'cloudflare'; const client = new Cloudflare({ apiToken: process.env['CLOUDFLARE_API_TOKEN'], // This is the default and can be omitted }); const response = await client.zones.activationCheck.trigger({ zone_id: '023e105f4ecef8ad9ca31a8372d0c353', }); console.log(response.id); ``` #### Response ```json { "errors": [ { "code": 1000, "message": "message", "documentation_url": "documentation_url", "source": { "pointer": "pointer" } } ], "messages": [ { "code": 1000, "message": "message", "documentation_url": "documentation_url", "source": { "pointer": "pointer" } } ], "success": true, "result": { "id": "023e105f4ecef8ad9ca31a8372d0c353" } } ```