I am trying to list by API the apps installed in my Monday account.
Looking at the network, I see the call to the backend is:
https://slug.monday.com/apps
with the cookie as the authentication method. This works great for me.
Now I am trying to do the same on behalf of an app. I created an app, and gave it all permissions at Set Up Permission Scopes.
I can’t get any response using the app token I got.
What I tried to do instead, is running the graphql at https://api.monday.com/v2/ with the query:
query {
apps {
created_at
}
}
but then I got:
{
"errors": :
{
"message": "Permission Denied! Your token doesn't grant access to apps:read"
}
],
}
When trying to add apps:read
to the consent link, I get:
{"error":"invalid_scope","error_description":"Invalid scope param"}
Is there any other way to list the apps?