27 chars · 1 line
43 chars · 3 lines
27 chars · 1 line
43 chars · 3 lines
Query value serialization
Query strings have string values but no native null type. VetaTool maps a JSON null property to an explicit empty value such as name= rather than the text name=null. This tool is free to use. No account or payment is required.
Last updated
The builder converts null to the empty string before appending the parameter.
This preserves the key while avoiding an invented literal null value. Application-specific null semantics still belong to the receiving API contract.
name is present but empty; active is stringified as true.
{"name":null,"active":true}name=&active=trueCommon questions
No. The builder emits an empty value.
No. The key is still present in the query string.
No. Parse mode exposes the value as an empty string.
Debugging a specific Query String issue? Browse Query String troubleshooting.