Hi team, I was hoping to use this API from our Forge app’s remote backend. It requires the read:goal:townsquare scope. However, if I add the scope to the manifest it won’t build
forge --version
12.15.0
% forge lint
/<…>/manifest.yml
403:4 error Invalid 'scopes' permission in the manifest.yml file - 'read:goal:townsquare'. Learn more about permissions at: https://go.atlassian.com/forge-permissions. valid-permissions-required
Is it possible to grant an app the read:goal:townsquare scope?
The query I would like to be able to execute from our app is like
query GoalsSearch {
goals_byId(
goalId: "ari:cloud:townsquare:41cc6393-a8b8-4cda-951a-9d3a4e452935:goal/62603a90-4e22-4fc4-8871-08777b06d1cd"
) {
key
name
url
creationDate
description
owner {
name
accountId
}
}
}