Gateway IPs
Retrieve Criteria Gateway IP List of a session server with the specified ID.
The ID of a session server for which to retrieve the Criteria settings.
Success
Unauthorized
Not Found
GET /api/MFA/{id}/Criteria/GatewayIPs HTTP/1.1
Host:
Accept: */*
[
{
"gatewayIP": "text"
}
]
Add a gateway IP to the Gateway IP List of the Criteria settings.
The ID of a session server for which to modify the Criteria settings.
Add a gateway IP to the Criteria Gateways list
The IP of the gateway to add to the Criteria.
The ID of the gateway to add to the Criteria.
Created
Unauthorized
Not Found
Conflict
POST /api/MFA/{id}/Criteria/GatewayIPs HTTP/1.1
Host:
Content-Type: application/json; api-version=1.0
Accept: */*
Content-Length: 27
{
"ip": "text",
"gatewayId": 1
}
No content
Remove a gateway IP from the Gateway IP List of the Criteria settings.
The ID of a session server for which to modify the Criteria settings.
Remove a gateway IP from the Criteria Gateways list
The IP of the gateway to remove from the Criteria.
No Content
Unauthorized
Not Found
DELETE /api/MFA/{id}/Criteria/GatewayIPs HTTP/1.1
Host:
Content-Type: application/json; api-version=1.0
Accept: */*
Content-Length: 13
{
"ip": "text"
}
No content
Last updated
Was this helpful?