CloudFlare\Zone::pause PHP Method

pause() public method

Pause all CloudFlare features (permission needed: #zone:edit) This will pause all features and settings for the zone. DNS will still resolve
public pause ( string $zone_identifier )
$zone_identifier string API item identifier tag
    public function pause($zone_identifier)
    {
        $data = ['paused' => true];
        return $this->patch('zones/' . $zone_identifier, $data);
    }