For Workers & Pages, what is the name of the domain?
What is the error number?
2001
What is the error message?
BadRequestError: Error code: 400 - {‘errors’: [{‘code’: 2001, ‘message’: “Invalid enum value. Expected ‘percentage_change’ | ‘min0_max’ | ‘’, received ‘raw_values’”, ‘path’: [‘query’, ‘normalization’]}], ‘success’: False, ‘result’: {}}
What is the issue or error you’re encountering
In the normalization methods page (see screenshot) there is a ‘RAW_VALUES’ option, however when you try to add it to the API call you get an error.
What are the steps to reproduce the issue?
response = client.radar.netflows.timeseries( #EXAMPLE CALL
agg_interval = “1h”,
location = [“IT”],
date_start = dt.datetime(2022, 1, 1, 0, 0, 0).isoformat() + “Z”,
date_end = dt.datetime(2022, 2, 1, 0, 0, 0).isoformat() + “Z”,
normalization=[“RAW_VALUES”]
)