Hello community,
I’m encountering a couple of issues related to permissions with the Miro API and would appreciate any insights.
1. When running the following request:
GET https://api.miro.com/v2/orgs/{org_id}/boards/export/jobs/{job_id}/results
I receive this response:
{
"status": 403,
"code": "insufficientPermissions",
"message": "Required scopes: boards:export",
"type": "error"
}
I’ve added the `boards:export` scope manually in my app manifest, yet this error persists. Additionally, I couldn’t find any mention of this scope in the documentation.
Is this scope deprecated, or could there be another issue?
2. I’m facing a similar problem with the following request:
GET https://api.miro.com/v2/orgs/{org_id}/content-logs/items
which returns:
{
"status": 403,
"code": "insufficientPermissions",
"message": "Required scopes: contentlogs:export",
"type": "error"
}
Despite adding the `contentlogs:export` scope in the app manifest, I still receive this error. This scope is also not mentioned in the documentation.
Could this scope also be deprecated, or might there be another configuration I’m overlooking?
Thanks for any guidance on resolving these issues!
Vas