Add subnet to VIP Customer

Add a subnet to a VIP customer steering parameter

POST https://<NSP Server>:8543/sdn/api/v3/steering/vip/customer/11fc79a5-ffc2-4017-a19d-53745cffdc5b/subnets

Request:

{
  "data": [
    {
      "subnetPrefix": {
        "ipv4Prefix": {
          "string": "100.100.100.0/24"
        }
      }
    }
  ]
}

Response:

{
  "status": 0,
  "startRow": 0,
  "endRow": 1,
  "totalRows": 1,
  "data": [
    {
      "id": "1b42df25-ee39-4dac-8b83-0b0cd79fc864",
      "subnetPrefix": {
        "ipv4Prefix": {
          "string": "100.100.100.0/24"
        },
        "ipv6Prefix": null
      }
    }
  ]
}