Skip to content

Add Global Void Ip

POST /config/add_global_void_ip

Description URL Response Format Request Method Authentication
Add valid ip to the Config->Security->Global Void Ip list https://domain/api/config/add_global_void_ip JSON POST HTTP headers

Parameters

Parameters must be sent with the request body. The examples below show the parameters sent as x-www-form-urlencoded.

Name Description Type Required
ip ipv4 or ipv6 format string yes

Example Request

GET

https://domain/api/config/add_global_void_ip

Response:

{
    "result": "success",
    "data": "Ip added / Ip already in list"
}

{
    "result": "error",
    "data": "Invalid ip"
}

Example Code

php

<?php
$curl = curl_init();

$data = array(
    'ip' => '73.279.112.30',
);

$url = 'https://domain/api/config/add_global_void_ip';

$headers = array(
    'api-key: 44b5498dbcb481a0d00b404c0169af62',
    'api-username: tf_admin'
);
curl_setopt($curl, CURLOPT_CUSTOMREQUEST, "POST");
curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_POSTFIELDS, http_build_query($data));
curl_setopt($curl, CURLOPT_URL, $url);

$resp = curl_exec($curl);
//dumps an associative array representation of the json
var_dump(json_decode($resp, true));
// Close request to clear up some resources
curl_close($curl);
?>