Code Samples #
Copy
curl --request GET \
--url 'https://app.xcloud.host/api/v1/sites/{uuid}/ip-access' \
--header 'Authorization: Bearer YOUR_TOKEN'
const response = await fetch('https://app.xcloud.host/api/v1/sites/{uuid}/ip-access', {
method: 'GET',
headers: {
'Authorization': 'Bearer YOUR_TOKEN'
}
});
const data = await response.json();
console.log(data);
import requests
headers = {
"Authorization": "Bearer YOUR_TOKEN"
}
response = requests.get("https://app.xcloud.host/api/v1/sites/{uuid}/ip-access", headers=headers)
print(response.json())
<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => 'https://app.xcloud.host/api/v1/sites/{uuid}/ip-access',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_CUSTOMREQUEST => 'GET',
CURLOPT_HTTPHEADER => [
'Authorization: Bearer YOUR_TOKEN'
],
]);
$response = curl_exec($curl);
curl_close($curl);
echo $response;
using System.Net.Http;
var client = new HttpClient();
var request = new HttpRequestMessage(new HttpMethod("GET"), "https://app.xcloud.host/api/v1/sites/{uuid}/ip-access");
request.Headers.Add("Authorization", "Bearer YOUR_TOKEN");
var response = await client.SendAsync(request);
var body = await response.Content.ReadAsStringAsync();
Console.WriteLine(body);
import java.net.URI;
import java.net.http.*;
HttpClient client = HttpClient.newHttpClient();
HttpRequest request = HttpRequest.newBuilder()
.uri(URI.create("https://app.xcloud.host/api/v1/sites/{uuid}/ip-access"))
.header("Authorization", "Bearer YOUR_TOKEN")
.method("GET", HttpRequest.BodyPublishers.noBody())
.build();
HttpResponse<String> response = client.send(request, HttpResponse.BodyHandlers.ofString());
System.out.println(response.body());
Response #
Copy
{
"success": true,
"message": "IP access rules retrieved successfully.",
"data": {
"items": [
{
"uuid": "ab12cd34-ef56-7890-abcd-ef1234567890",
"ip_address": "203.0.113.42",
"type": "blacklist",
"created_at": "2025-12-10T00:00:00Z",
"updated_at": "2025-12-10T00:00:00Z"
},
{
"uuid": "cd34ef56-7890-abcd-ef12-34567890abcd",
"ip_address": "198.51.100.7",
"type": "whitelist",
"created_at": "2025-12-11T00:00:00Z",
"updated_at": "2025-12-11T00:00:00Z"
}
],
"counts": {
"whitelist": 1,
"blacklist": 1,
"total": 2
}
}
}
{
"success": false,
"message": "Unauthenticated.",
"data": null
}
{
"success": false,
"message": "This action is unauthorized. Your token is missing the required scope.",
"data": null
}
{
"success": false,
"message": "Not found.",
"data": null
}
Returns every IP access rule scoped to the site, split between whitelist and blacklist entries. Requires the read:sites scope.
Path Parameters #
| Name | Type | Required | Description |
|---|---|---|---|
uuid | string (uuid) | Required | UUID of the site |
Responses #
200 — List of IP access rules #
| Field | Type | Required | Description |
|---|---|---|---|
success | boolean | Optional | |
message | string | Optional | |
data | object | Optional | |
data | object | Optional | |
data.items | array of object | Optional | |
data.counts | object | Optional | |
data.counts.whitelist | integer | Optional | |
data.counts.blacklist | integer | Optional | |
data.counts.total | integer | Optional |
Example 200 response
Copy
{
"success": true,
"message": "IP access rules retrieved successfully.",
"data": {
"items": [
{
"uuid": "ab12cd34-ef56-7890-abcd-ef1234567890",
"ip_address": "203.0.113.42",
"type": "blacklist",
"created_at": "2025-12-10T00:00:00Z",
"updated_at": "2025-12-10T00:00:00Z"
},
{
"uuid": "cd34ef56-7890-abcd-ef12-34567890abcd",
"ip_address": "198.51.100.7",
"type": "whitelist",
"created_at": "2025-12-11T00:00:00Z",
"updated_at": "2025-12-11T00:00:00Z"
}
],
"counts": {
"whitelist": 1,
"blacklist": 1,
"total": 2
}
}
}
401 — Missing or invalid authentication token #
| Field | Type | Required | Description |
|---|---|---|---|
success | boolean | Optional | |
message | string | Optional | |
data | object | Optional |
Example 401 response
Copy
{
"success": false,
"message": "Unauthenticated.",
"data": null
}
403 — Token lacks the required scope #
| Field | Type | Required | Description |
|---|---|---|---|
success | boolean | Optional | |
message | string | Optional | |
data | object | Optional |
Example 403 response
Copy
{
"success": false,
"message": "This action is unauthorized. Your token is missing the required scope.",
"data": null
}
404 — Resource not found or not accessible to your Team #
| Field | Type | Required | Description |
|---|---|---|---|
success | boolean | Optional | |
message | string | Optional | |
data | object | Optional |
Example 404 response
Copy
{
"success": false,
"message": "Not found.",
"data": null
}
