tags:

views:

12

answers:

1

How can i pass / character in a rest request ?

for example i have products with code like this CAB1/8TO1/8-25 and my rest url is like this "items/{code}"

Is there any way of handling this with a GET request?

Thanks

A: 

You may try to URL encode it: items/CAB1%2f8TO1%2f8-25

Darin Dimitrov
I tried but i doesn't seem to work.
mateo