I am sending a POST request to call my restlet pos...
# suitescript
a
I am sending a POST request to call my restlet post function. I am passing some internal id values in request body. The numbers are getting converted to integers like if I send "id": "1023", it gets received as 1,023. Does anyone know the way around it?
c
Are you logging the parameter directly off context.request and seeing it that way, or is there any kind of processing happening to the value before you see it "received" with the comma interpolated?
a
no processing, the value is going directly from request body to the logs.
c
Can you share code along with the exact request body?
a
I got it working. Thank You.
🙌 1
c
Great, what was the issue?