We have set up a Google project for accessing several of the Google APIs, including the DCM/DFA API. And we have authenticated and received an OAuth access token with both the reporting and trafficking scope.
However, when we want to get a list of advertisers, creatives, or placements, we receive a 403 (insufficient permission) error:
{
"error": {
"errors": [
{
"domain": "global",
"reason": "insufficientPermissions",
"message": "Insufficient Permission"
}
],
"code": 403,
"message": "Insufficient Permission"
}
}
The user profile has the following (and many more) permissions checked off for their role:
Advertiser management: read-only access
Creatives: read-only access
Placements: read-only access
Sites: read-only access to properties
What else could be the issue here?
Thanks for your help.