HostingOther

List trusted networks

GET/api/domains/{domain_code}/settings/trusted_networks

Returns trusted networks configured for the domain. Admin only.

X-Api-Token<token>

API token used to authenticate requests.

In: header

Path Parameters

domain_code*string

Domain code: D followed by 9 digits. Example: D123456789.

Response Body

application/json

curl -X GET "https://example.com/api/domains/string/settings/trusted_networks" \  -H "X-Api-Token: YOUR_API_TOKEN" \  -H "Accept: application/json"
{
  "trusted_networks": [
    {
      "ip": "string",
      "description": "string"
    }
  ]
}