Please be sure you’ve read the docs and API specs before asking for help. Also, please be sure you’ve searched the forum for your answer before you create a new topic.
I am writing a Python scrip to export all access profiles for a specific source including various attributes of the AP and associated entitlements. There are 21M+ access profiles in the environment and I don’t want to scrape through every single profile and create my needed dataset because that’ll take forever.
So I am trying to use this query filter but doesn’t appear to be working. I am still getting all APs and not just for the source I am looking for. What’s wrong with it? Suggestions? Thank you in advance!!
{
"indices": ["accessprofiles"],
"query": {
"query": "*",
"filters": [
{
"field": "source.name",
"values": ["MY_SOURCE_NAME"]
}
]
},
"limit": 100
}

