How to get the api's that are connected to a client(application) through management API

Hello Auth0 Community, im trying to get all the apis that are connected to a specific client through the management api. I’ve read through the docs but i cant find any workaround and i find it very very strange. Any help?
Thanks in advance.

Hey there @manolis welcome to the community!

You should be able to get what you are looking for by using the client-grants endpoint adding a client_id paramater:

curl -L 'https://{YOUR_DOMAIN}.auth0.com/api/v2/client-grants?client_id={YOUR_CLIENT_ID}' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer {YOUR_ACCESS_TOKEN}'
1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.