Create a Next Hop Bundle

Create a next hop bundle

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

Request:

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

Response:

{
  "status": 0,
  "startRow": 0,
  "endRow": 1,
  "totalRows": 1,
  "data": {
    "id": "2d9ae072-4bf1-4b05-a883-19082c4fbff8",
    "name": "NH Bundle 1",
    "nextHopIpAddress": {
      "ipv6Address": null,
      "ipv4Address": {
        "string": "200.200.200.1"
      }
    },
    "nextHopRouterIpAddress": {
      "ipv6Address": null,
      "ipv4Address": {
        "string": "135.121.149.93"
      }
    },
    "isVip": true
  }
}