I am trying to retrieve the ad accounts that a user has explicitly given access to during login in my Meta Business App.
Currently, I am using the following API call with a system user access token:
.0/me/adaccounts?access_token=<ACCESS_TOKEN>
However, this returns all ad accounts created under the user's Business Manager, rather than only the ones the user has granted access to my app during the Login.
My App Permissions: business_management, ads_read, ads_management How can I modify my approach to fetch only the ad accounts the user has explicitly authorized for my app?
Any guidance would be appreciated!