IP Allowlist
Update an IP allowlist rule
Update the tag or the IP ranges of an existing IP allowlist rule.
patch/v1/ip-allowlist/{ip_allowlist_rule_id}
Path parameters
ip_allowlist_rule_idstring uuid required
The id of the IP allowlist rule
Request body
Example request
{
"tag": "Satellite office",
"ip_ranges": [
"35.45.64.56",
"10.0.0.0/24"
]
}Response
The IP allowlist rule was updated successfully.
Example response
{
"id": "d45a123f-b15d-4fea-abf6-ff2a8479de5b",
"tag": "Main office",
"created_at": "2019-08-22T14:15:22Z",
"ip_ranges": [
"35.153.173.97",
"10.0.0.0/24"
]
}