Create a Next Hop Bundle

Create a next hop bundle

POST https://<NSP Server>:8543/sdn/api/v3/steering/next-hop-bundle

Request:

{
  "data": {
    "isVip": true,
    "name": "NH Bundle 1",
    "nextHopIpAddress": {
      "ipv4Address": {
        "string": "200.200.200.1"
      }
    },
    "nextHopRouterIpAddress": {
      "ipv4Address": {
        "string": "135.121.148.187"
      }
    }
  }
}

Response:

{
  "status": 0,
  "startRow": 0,
  "endRow": 1,
  "totalRows": 1,
  "data": {
    "id": "da7448b2-0370-4331-8fdc-ae77cb2e5daf",
    "name": "NH Bundle 1",
    "nextHopIpAddress": {
      "ipv6Address": null,
      "ipv4Address": {
        "string": "200.200.200.1"
      }
    },
    "nextHopRouterIpAddress": {
      "ipv6Address": null,
      "ipv4Address": {
        "string": "135.121.148.187"
      }
    },
    "isVip": true
  }
}