You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Unfortunately, under the hood, we're using a JSON parser to parse query parameters. That means that because bravado sends "F" and "T" that I am unable to set this parameter; otherwise I get a 400:
HTTPBadRequest: 400 Bad Request: APIError(code=25, error=u"The parameter asc_order cannot be deserialized: invalid character 'F' looking for beginning of value", payload=None)
How do I send a true/false instead?
The text was updated successfully, but these errors were encountered:
An endpoint is programmed to accept a boolean as an query parameter:
Unfortunately, under the hood, we're using a JSON parser to parse query parameters. That means that because bravado sends "F" and "T" that I am unable to set this parameter; otherwise I get a 400:
How do I send a
true
/false
instead?The text was updated successfully, but these errors were encountered: