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. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/PermittedIpRead",
"title": "PermittedIpRead",
"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
}
}
}