Address default attribute requires a string value of true or false. Currently booleans are converted to 0 or 1 when building the xml which makes the request fail.
This might actually cause backward compatibility issues for people who insert false as a string since "false" ? "true" : "false" will always return "true".
Address default attribute requires a string value of
true
orfalse
. Currently booleans are converted to0
or1
when building the xml which makes the request fail.