v1

latestOpenAPI 3.1.0UNLICENSED2026-07-2613101.1 MB
IP addresses

List IP addresses allowed to access the API

Returns a list of IP addresses ordered numerically.

get/ipaddresses

Query parameters

limitinteger

The maximum number of results to return.

Example:200
offsetinteger

The number of items to skip before returning results.

Example:100

Response

OK

limitinteger

The maximum number of results to return.

offsetinteger

The number of items to skip before returning results.

countinteger required

The total amount of records matching the querying when "limit" is ignored.

Example response

{
  "limit": 200,
  "offset": 100,
  "count": 67,
  "rows": [
    {
      "id": "2327f0d0-2cb5-4f31-8de2-b9d04036fdd9",
      "ipaddressableId": "8365191f-08b8-4dc5-88fd-73fcd7fd41a1",
      "ip": "8.8.8.8",
      "description": "John Smith's home IP",
      "ipaddressableType": "string",
      "createdAt": "2019-08-24T14:15:22Z",
      "updatedAt": "2019-08-24T14:15:22Z"
    }
  ]
}