Cloudflare\User\LoadBalancers\Notifiers::create PHP Метод

create() публичный Метод

Create a notifier Create a configured notifier
public create ( string $address, string | null $type = null )
$address string Notifier address
$type string | null Notifier type
    public function create($address, $type = null)
    {
        $data = ['address' => $address, 'type' => $type];
        return $this->post('/user/load_balancers/notifiers', $data);
    }