How to pass the json in the http request

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 ?

Follow this post as guidance Making web API call, Method not found - #7 by marian.platonov

@kumar3,

Try passing it like this.

Beter way:

"{ \"socialSecurityNumber\": 123456789, \"sourceSystemId\": \"string\", \"organizationId\": \"test\" }"

it not taking this format it is giving the complier error

"{
““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: