Hi all, just stacked with a small problem.
This piece of code works perfect, but if I uncomment filter clause I got an “HTTP 400: Bad Request”. Same as in documentation, but error =(
params = {
"event_type":"registerComplete",
# "filters": [
# {
# "subprop_type": "event",
# "subprop_key": "EmailVerified",
# "subprop_op": "is",
# "subprop_value": ["true"]
# }
# ]
}
dates = '&start=20210615&end=20210615'
url = SEGMENT_URI + json.dumps(params) + dates
response = requests.get(url, auth = (api_android, secret_android))
Thanks.