Passing bare String JSON as body or payload to the target API - WSU-CptS-581-2025/zerocode GitHub Wiki

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