Add subnet to VIP Customer

Add a subnet to a VIP customer steering parameter

POST https://<NSP Server>:8543/sdn/api/v4/steering/vip/customer/339d8cd5-2148-4be8-8f9f-6b57c3ae3574/subnets

Request:

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

Response:

{
  "status": 0,
  "startRow": 0,
  "endRow": 1,
  "totalRows": 1,
  "data": [
    {
      "id": "e256f4ff-96c5-4aa5-afec-a7f0e861baea",
      "subnetPrefix": {
        "ipv6Prefix": null,
        "ipv4Prefix": {
          "string": "100.100.100.0/24"
        }
      }
    }
  ]
}