HP VAN SDN Controller REST API Guide
5 "systems": [
6 {
7 "name": "member 1",
8 "ip": "192.168.139.101",
9 "priority": 10
10 },
11 {
12 "name": "member 2",
13 "ip": "192.168.139.102",
14 "priority": 20
15 },
16 {
17 "name": "member 3",
18 "ip": "192.168.139.103",
19 "priority": 30
20 }
21 ]
22 }
23 "forward_request": true
24 }
When the optional attribute forward_request=true (default is true), team configuration will be
propogated to all the systems specified in the list.
When forward_request=false, team configuration will not be propogated to other systems specified
in the list.
Response codes
• Normal: Created (201)
• Error: Unauthorized (401), Not Found (404), Service Unavailable (503)
Disband team
Sample request
Delete teaming configuration on this controller:
DELETE /sdn/v2.0/team
There is no request data.
Sample response
There is no response data.
Response codes
• Normal: No Content (204)
• Error: Unauthorized (401), Not Found (404), Service Unavailable (503)
Team/action
Run leader election process
Sample request
POST /sdn/v2.0/team/action
Valid request data:
"election" -- Run the team election process
Sample response
There is no response data.
40 /sdn/v2.0