IP Allowlist
Create an IP allowlist rule
This endpoint allows you to create an IP allowlist rule.
If you are using a personal access token, you need to have an access level superior or equal to manager.
post/v1/ip-allowlist
Request body
Example request
{
"tag": "Main office",
"ip_ranges": [
"35.153.173.97",
"10.0.0.0/24"
]
}Response
IP allowlist rule created
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"
]
}