Discussions
REST API - LegacyBillingItem with forward slash in ItemId
over 2 years ago by Max Szczurek
Hello - I have a billing item with an ItemId of "CHAPT/NORTH". I need to update the product using an API PUT request, but the slash in the name is preventing me, even if I encode it.
These paths fail for both GET and PUT requests:
/api/LegacyBillingItem/CHAPT/NORTH (404)
/api/LegacyBillingItem/CHAPT%2FNORTH (404)
/api/LegacyBillingItem/CHAPT%252FNORTH (400)
Wondering if there's a workaround for this? Thanks!