HP VAN SDN Controller REST API Guide

Response codes
Normal: OK (200)
Error: Bad Request (400), Unauthorized (401), Not Found (404), Service Unavailable (503)
ARPs
Arps
Sample request
List all learned end host ARPs:
GET /sdn/v2.0/net/arps
List all learned end host ARPs for the given vlan:
GET /sdn/v2.0/net/arps?vid=3
List all learned end host ARPs for the given host IP:
GET /sdn/v2.0/net/arps?ip="10.0.0.3"&vid=3
There is no request body for this API.
Sample response
1 {"arps": [{
2 "ip": "10.0.0.3",
3 "mac": "a2:c0:98:8e:ec:4a",
4 "vid": 3
5 }]}
Response codes
Normal: OK (200)
Error: Unauthorized (401), Not Found (404), Service Unavailable (503)
Nodes
Nodes
Sample request
List all learned end hosts:
GET /sdn/v2.0/net/nodes
List all learned end hosts with the given vlan id:
GET /sdn/v2.0/net/nodes?vid=3
List a learned host with the given host IP and vlan id:
GET /sdn/v2.0/net/nodes?ip="10.0.0.3"&vid=3
70 /sdn/v2.0/net