Secondary Connections
Retrieve the list of secondary connections of the specified client policy with ID.
Client Policy ID.
Success
Unauthorized
Not Found
GET /api/ClientPolicies/{id}/SecondaryConnections HTTP/1.1
Host:
Accept: */*
[
{
"mode": [
"0 = GatewayMode",
"1 = DirectMode",
"2 = GatewaySSLMode",
"3 = DirectSSLMode"
],
"server": "text",
"serverPort": 1
}
]
Add a connection to the list of secondary connections of the specified client policy with ID.
Client Policy ID.
Add a new connection to the secondary connections list
Mode Type.
The Server which the user is going to connect to.
The port of the Server.
Created
No content
Unauthorized
POST /api/ClientPolicies/{id}/SecondaryConnections HTTP/1.1
Host:
Content-Type: application/json; api-version=1.0
Accept: */*
Content-Length: 117
{
"mode": [
"0 = GatewayMode",
"1 = DirectMode",
"2 = GatewaySSLMode",
"3 = DirectSSLMode"
],
"server": "text",
"serverPort": 1
}
No content
Delete a connection to the list of secondary connections of the specified client policy with ID.
Client Policy ID.
Remove a connection from the secondary connections list
Mode Type.
The Server which the user is going to connect to.
The port of the Server.
No Content
No content
Unauthorized
Not Found
DELETE /api/ClientPolicies/{id}/SecondaryConnections HTTP/1.1
Host:
Content-Type: application/json; api-version=1.0
Accept: */*
Content-Length: 117
{
"mode": [
"0 = GatewayMode",
"1 = DirectMode",
"2 = GatewaySSLMode",
"3 = DirectSSLMode"
],
"server": "text",
"serverPort": 1
}
No content
Last updated
Was this helpful?