Body Required

The lower and upper bounds of an ip range.

  • start string Required

    The begining (or first) IP address in the range.

  • end string Required

    The ending (or last) IP address in the range.

Body Required

The lower and upper bounds of an ip range.

  • start string Required

    The begining (or first) IP address in the range.

  • end string Required

    The ending (or last) IP address in the range.

Responses

  • 401 application/json

    Unauthorized

    Hide response attributes Show response attributes object
    • code string Required
    • message string Required
  • default

    Default response

POST /account/iplimits
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"
}