Skip to content

Passing bare String JSON as body or payload to the target API

Ben Crossett edited this page Feb 28, 2025 · 1 revision

The following is a valid JSON according to W3 standards.

     "CUST_112233"

How to Send In The Body:

     "body": "\"CUST_112233\""

How to Send null In The Body:

     "body": "null"

DO NOT

     "body": "\"null\""  <--- This goes as String "null" to the target API

Blogs

Clone this wiki locally