PUT
/taxRates/{taxRateID}
curl \
-X PUT http://api.example.com/taxRates/{taxRateID} \
-H "Content-Type: application/json" \
-d '{"taxRateID":42,"name":"string","rate":42.0,"isDefault":true,"isActive":true}'
Request example
{
"taxRateID": 42,
"name": "string",
"rate": 42.0,
"isDefault": true,
"isActive": true
}