My URL can take null as a value for a query param like so:
https:/api.server.com/v1/users/?parent=null
When I'm trying to send the request in Python using Requests, I'm passing None:
requests.get(
BASE_URL + USER_URL,
headers = get_headers(),
timeout = 60,
params = {
'parent': None
}
)
However, it seems to skip the query param parent if it's set to None. How can I force it?