Hi all
I am trying to establish a lifecycle process with the Miro api. I’ve created a miro app (draft status) and installed it in a team (install app and get oauth token). With this token I’ve used the /boards api endpoint like so:
GET https://api.miro.com/v2/boards/?limit=50&offset=0
accept: application/json
Authorization: Bearer aoauth token]
I get back a json saying there is a total of 403 boards in this team:
{
"size": 50,
"offset": 0,
"limit": 50,
"total": 403,
//r..removed]
}
However in the Admin portal I can see that there should be more boards in this team (552). How can this be? (the trash is empty).
I have the company admin role.
The app has the following permissions:
Is this because my user cannot see all boards (e.g. private) - even if I am company admin?
Thanks for your support!