Hi,
I'm trying to update a previously GET qosRule using API. If I GET the QOS Rule I have something like this:
{
"id" : "645703596574246393",
"vlan" : null,
"protocol" : "UDP",
"srcPort" : null,
"dstPort" : null,
"dscp" : NumberInt(46)
}
as you can read vlan, srcPort and distort are null because I put "Any" from the Dashboard.
If I try to PUT the same JSON I receive an error because vlan, srcPort and distort should be integer and not 0.
What I'm doing wrong here? I tried to pass "Any" instead of null but the same error occurs.