kumar3
(kumar3)
1
Hi Team,
i have the Json body, while trying to pass it in the body having complier error below is the Json body trying to pass the http body
{
“socialSecurityNumber”: 123456789,
“sourceSystemId”: “string”,
“organizationId”: “test”,
}
is this the correct way to pass it ?
@kumar3,
Try passing it like this.
Beter way:
"{ \"socialSecurityNumber\": 123456789, \"sourceSystemId\": \"string\", \"organizationId\": \"test\" }"
kumar3
(kumar3)
4
it not taking this format it is giving the complier error
kumar3
(kumar3)
5
"{
““socialSecurityNumber””: "“123456789"”,
““sourceSystemId””: ““string””,
““organizationId””: ““ICITEST””,
““programs””: [
““Medicaid””
],
““productCodes””: [
““SSV03"”
]
}”
This formaot i am trying to pass in the body still givng the complier error
@kumar3,
Alright, use this format.
"{
""socialSecurityNumber"": 123456789,
""sourceSystemId"": ""string"",
""organizationId"": ""test""
}"
Here it’s validating:
Output: