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
Clay Roper
09/13/2023, 5:15 PM
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
Anas Jakwani
09/13/2023, 5:17 PM
no processing, the value is going directly from request body to the logs.
c
Clay Roper
09/13/2023, 5:20 PM
Can you share code along with the exact request body?