Hello, I’d like to see pageviews from likely humans with the GraphQL API.
How can I filter httpRequestsAdaptiveGroups
by the botScore
?
I see ZoneHttpRequestsAdaptiveGroupsFilter_InputObject
has botScore_gt
but if I add
{
"botScore_gt": 29
}
(because anything above 30 is “Likely human” https://developers.cloudflare.com/bots/concepts/bot-score/#bot-groupings)
it errors and with the response:
{
"data": null,
"errors": [
{
"message": "zone '{REDACTED}' does not have access to the field 'botscore' from the path",
"path": [
"viewer",
"zones",
"0",
"pageviews"
],
"extensions": {
"code": "authz",
"timestamp": "2022-04-19T20:28:48.007239362Z"
}
}
]
}
Is this not included in my plan, maybe?
Thank you