GET https://graph.microsoft.com/v1.0/applicationTemplates/00000007-0000-0000-c000-000000000000
// Code snippets are only available for the latest version. Current version is 5.x
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=csharp
var result = await graphClient.ApplicationTemplates["{applicationTemplate-id}"].GetAsync();
// Code snippets are only available for the latest major version. Current major version is $v1.*
// Dependencies
import (
"context"
msgraphsdk "github.com/microsoftgraph/msgraph-sdk-go"
//other-imports
)
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=go
applicationTemplates, err := graphClient.ApplicationTemplates().ByApplicationTemplateId("applicationTemplate-id").Get(context.Background(), nil)
// Code snippets are only available for the latest version. Current version is 6.x
GraphServiceClient graphClient = new GraphServiceClient(requestAdapter);
ApplicationTemplate result = graphClient.applicationTemplates().byApplicationTemplateId("{applicationTemplate-id}").get();
# Code snippets are only available for the latest version. Current version is 1.x
from msgraph import GraphServiceClient
# To initialize your graph_client, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=python
result = await graph_client.application_templates.by_application_template_id('applicationTemplate-id').get()
HTTP/1.1 200 OK
Content-type: application/json
{
"@odata.context": "https://graph.microsoft.com/v1.0/$metadata#applicationTemplates/$entity",
"@microsoft.graph.tips": "Use $select to choose only the properties your app needs, as this can lead to performance improvements. For example: GET applicationTemplates('<guid>')?$select=categories,description",
"id": "00000007-0000-0000-c000-000000000000",
"displayName": "Dynamics CRM Online",
"homePageUrl": "http://www.microsoft.com/dynamics/crm",
"supportedSingleSignOnModes": [
"oidc",
"external"
],
"supportedProvisioningTypes": [],
"logoUrl": "https://az495088.vo.msecnd.net/app-logo/crm_215.png",
"categories": [
"crm",
"productivity",
"collaboration",
"businessMgmt"
],
"publisher": "Microsoft Corporation",
"description": null
}