Add an IP range into the IP Limiting IP ranges.
application/json
POST
/account/iplimits
cURL (application/json)
curl \
--request POST 'https://my.interserver.net/apiv2/account/iplimits' \
--header "X-API-KEY: $API_KEY" \
--header "Content-Type: application/json" \
--data '{"end":"1.2.3.255","start":"1.2.3.0"}'
curl \
--request POST 'https://my.interserver.net/apiv2/account/iplimits' \
--header "X-API-KEY: $API_KEY" \
--header "Content-Type: multipart/form-data" \
--form "end=1.2.3.255" \
--form "start=1.2.3.0"
Request example
{
"end": "1.2.3.255",
"start": "1.2.3.0"
}
Request example
{"end" => "1.2.3.255", "start" => "1.2.3.0"}
Response examples (401)
{
"code": "string",
"message": "string"
}