/server/firewall/get
GET https://api.sitehost.nz/1.5/server/firewall/get.json
Get the list of Security Groups attached to a Server's firewall.
Query Parameters
Parameter | Type | Required | Description |
client_id | integer | Yes | The ID for the client.Example: 1 |
server | string | Yes | The name of the server.Example: servername |
Code Samples
JavaScript PHP Rails Pythonvar xmlHttp = new XMLHttpRequest();
xmlHttp.open("GET", "https://api.sitehost.nz/1.5/server/firewall/get.json?apikey=your_key_here&client_id=1&server=servername", false);
xmlHttp.send();
var response = xmlHttp.responseText;
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://api.sitehost.nz/1.5/server/firewall/get.json?apikey=your_key_here&client_id=1&server=servername");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$response = curl_exec($ch);
$status = curl_getinfo($ch, CURLINFO_HTTP_CODE);
curl_close($ch);
require 'net/http'
require 'uri'
uri = URI.parse("https://api.sitehost.nz/1.5/server/firewall/get.json?apikey=your_key_here&client_id=1&server=servername")
http = Net::HTTP.new(uri.host, uri.port)
request = Net::HTTP::Get.new(uri.request_uri)
response = http.request(request)
import requests
uri = 'https://api.sitehost.nz/1.5/server/firewall/get.json?apikey=your_key_here&client_id=1&server=servername'
response = requests.get(uri)
Response
200:application/json
{
"return": [
{
"group": "sgfc40e62092",
"pos": "0",
"interface": "net0",
"is_ra": false
},
{
"group": "sgfc1h56h3nf",
"pos": "1",
"interface": "net0",
"is_ra": false
}
],
"msg": "Successful",
"status": true
}
"return": [
{
"group": "sgfc40e62092",
"pos": "0",
"interface": "net0",
"is_ra": false
},
{
"group": "sgfc1h56h3nf",
"pos": "1",
"interface": "net0",
"is_ra": false
}
],
"msg": "Successful",
"status": true
}