Jerry Lu
Jerry Lu

Reputation: 21

Microsoft Graph API Application Logo

With the May 2017 beta update, retrieve the application logo through the GRAPH API changed from mainLogo to Logo. When tested through the Graph Explorer with the new API, it's now given an error message as follows, tried the logoUrl property, it also failed.

API Call https://graph.microsoft.com/beta/applications/[ApplicationID]/logo

{
    "error": {
        "code": "Request_UnsupportedQuery",
        "message": "This property logo cannot be read. Please use the logoUrl property.",
        "innerError": {
            "request-id": "623806c0-6255-4b7d-bce1-d1cb7a982e6c",
            "date": "2017-06-09T20:21:37"
        }
    }
}

Upvotes: 2

Views: 559

Answers (1)

andresm53
andresm53

Reputation: 2083

logoUrl is under info, for example https://graph.microsoft.com/beta/applications/[ApplicationID]/info/logoUrl

Upvotes: 1

Related Questions