HP VAN SDN Controller REST API Guide

Response codes
Normal: OK (200)
Error: Unauthorized (401), Not Found (404), Service Unavailable (503)
Backup
Backups/{session uid}
Get backup session
Sample request
Get backup session with the given uid:
GET /sdn/v2.0/backups/{session_uid}
There is no request body for this API.
Sample response
1 {
2 "statusCode": 3,
3 "Description": "Operation complete."
4 }
Response codes
Normal: OK (200)
Error: Unauthorized (401), Not Found (404), Service Unavailable (503)
Alerts
Alerts
List alerts
Sample request
List all alerts:
GET /sdn/v2.0/alerts
There is no request body for this API.
Sample response
{
"alerts": [
{
"desc": "NEW_LEADER, ID: Id[value=c8f698b9-bfce-4c17-9e9c-3180033b1ad7]",
"org": "TeamingManager",
"sev": "INFO",
"state": true,
"system_uid": "669aa151-2790-4cb0-9656-75e9651893ee",
"topic": "teaming",
"ts": "2013-10-16T21:14:29.704Z",
"uid": "2237dab8-c5e0-4a43-83ba-60b318741450"
},
{
"desc": "BECOME_MEMBER, ID: Id[value=669aa151-2790-4cb0-9656-75e9651893ee]",
"org": "TeamingManager",
"sev": "INFO",
"state": true,
"system_uid": "669aa151-2790-4cb0-9656-75e9651893ee",
"topic": "teaming",
"ts": "2013-10-16T21:14:29.717Z",
Backup 41