I am trying to use Microsoft Graph API in Power Automate where I make calls out to perform some actions. I have been successful with all Graph calls up to this one where I get a 503 serviceNotAvailable error.
The call I am trying is below
GET https://graph.microsoft.com/v1.0/groups/b40e54ac-5626-xxxx-xxxx-xxxxxxxxxxxx/drive/root:/filepath.docx
If I paste this directly into Graph Explorer on the Graph API site it works fine so I am happy that the call is syntactically correct.
I can't get the call to work through Power Automate. I also have tried this through Postman and am getting the same 503 error.
{
"error": {
"code": "serviceNotAvailable",
"message": "The service is not available. Try the request again after a delay. There may be a Retry-After header.",
"innerError": {
"request-id": "87725851-77fb-xxxx-xxxx-xxxxxxxxxxxx",
"date": "2020-03-01T16:55:43"
}
}
}
Permissions in my app registration are
- Directory.AccessAsUser.All
- Directory.Read.All
- Directory.Read.All
- Directory.ReadWrite.All
- Directory.ReadWrite.All
- Files.Read.All
- Files.ReadWrite.All
- Group.Create
- Group.Read.All
- Group.ReadWrite.All
- Group.Selected
- Sites.FullControl.All
- Sites.Manage.All
- Sites.Read.All
- Sites.ReadWrite.All
- TeamsActivity.Read.All
- TeamsActivity.Send
- TeamsApp.Read.All
- TeamsApp.ReadWrite.All
- TeamsTab.Create
- TeamsTab.Read.All
- TeamsTab.ReadWrite.All
- User.Read
- User.ReadWrite.All
Am pulling my hair out ... and there's barely anything left!