Skip to content

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

authorjapps edited this page Jun 29, 2023 · 2 revisions

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