Bunq · Schema

PermittedIpListing

Banking

Properties

Name Type Description
ip string The IP address.
status string The status of the IP. May be "ACTIVE" or "INACTIVE". It is only possible to make requests from "ACTIVE" IP addresses. Only "ACTIVE" IPs will be billed.
View JSON Schema on GitHub

JSON Schema

bunq-permittediplisting-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PermittedIpListing",
  "title": "PermittedIpListing",
  "type": "object",
  "properties": {
    "ip": {
      "type": "string",
      "description": "The IP address.",
      "readOnly": true,
      "writeOnly": false
    },
    "status": {
      "type": "string",
      "description": "The status of the IP. May be \"ACTIVE\" or \"INACTIVE\". It is only possible to make requests from \"ACTIVE\" IP addresses. Only \"ACTIVE\" IPs will be billed.",
      "readOnly": true,
      "writeOnly": false
    }
  }
}