applicationTemplate: instantiate
Namespace: microsoft.graph
Important
APIs under the /beta
version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.
Add an instance of an application from the Microsoft Entra application gallery into your directory.
For non-gallery apps, use an application template with one of the following IDs to configure different single sign-on (SSO) modes like SAML SSO and password-based SSO.
- Global service:
8adf8e6e-67b2-4cf2-a259-e3dc5476c621
- US government:
4602d0b4-76bb-404b-bca9-2652e1a39c6d
- China operated by 21Vianet:
5a532e38-1581-4918-9658-008dc27c1d68
This API is available in the following national cloud deployments.
Global service | US Government L4 | US Government L5 (DOD) | China operated by 21Vianet |
---|---|---|---|
✅ | ✅ | ✅ | ✅ |
Permissions
Choose the permission or permissions marked as least privileged for this API. Use a higher privileged permission or permissions only if your app requires it. For details about delegated and application permissions, see Permission types. To learn more about these permissions, see the permissions reference.
Permission type | Least privileged permissions | Higher privileged permissions |
---|---|---|
Delegated (work or school account) | Application.ReadWrite.All | Directory.ReadWrite.All |
Delegated (personal Microsoft account) | Not supported. | Not supported. |
Application | Application.ReadWrite.OwnedBy | Application.ReadWrite.All, Directory.ReadWrite.All |
HTTP request
POST /applicationTemplates/{applicationTemplate-id}/instantiate
Request headers
Name | Description |
---|---|
Authorization | Bearer {token}. Required. Learn more about authentication and authorization. |
Request body
In the request body, provide a JSON object with the following parameters.
Parameter | Type | Description |
---|---|---|
displayName | String | Custom name of the application |
serviceManagementReference | String | The service tree ID for this service. Optional. |
Response
If successful, this method returns a 201 Created
response code and a new applicationServicePrincipal object in the response body.
Examples
The following example shows how to call this API.
Request
The following example shows a request. The request URL specifies 8adf8e6e-67b2-4cf2-a259-e3dc5476c621
as the application template ID, which means that the request is instantiating a non-gallery app.
POST https://graph.microsoft.com/beta/applicationTemplates/8adf8e6e-67b2-4cf2-a259-e3dc5476c621/instantiate
Content-type: application/json
{
"displayName": "testProperties"
}
Response
The following example shows the response.
Note: The response object shown here might be shortened for readability.
HTTP/1.1 201 Created
Content-type: application/json
{
"@odata.context": "https://graph.microsoft.com/beta/$metadata#microsoft.graph.applicationServicePrincipal",
"application": {
"objectId": "428fbcb1-35bc-471d-95f2-6cc339357cb5",
"appId": "23a223ba-bb90-4949-8232-1bf479189e9b",
"applicationTemplateId": "8adf8e6e-67b2-4cf2-a259-e3dc5476c621",
"displayName": "testProperties",
"homepage": "https://account.activedirectory.windowsazure.com:444/applications/default.aspx?metadata=customappsso|ISV9.1|primary|z",
"identifierUris": [],
"publicClient": null,
"replyUrls": [],
"logoutUrl": null,
"samlMetadataUrl": null,
"errorUrl": null,
"groupMembershipClaims": null,
"availableToOtherTenants": false
},
"servicePrincipal": {
"objectId": "7b358fa1-7d10-4a57-bd96-b7e63c2f9be5",
"deletionTimestamp": null,
"accountEnabled": true,
"appId": "23a223ba-bb90-4949-8232-1bf479189e9b",
"appDisplayName": "testProperties",
"applicationTemplateId": "8adf8e6e-67b2-4cf2-a259-e3dc5476c621",
"appOwnerTenantId": "29a4f813-9274-4e1b-858d-0afa98ae66d4",
"appRoleAssignmentRequired": true,
"displayName": "testProperties",
"errorUrl": null,
"loginUrl": null,
"logoutUrl": null,
"homepage": "https://account.activedirectory.windowsazure.com:444/applications/default.aspx?metadata=customappsso|ISV9.1|primary|z",
"samlMetadataUrl": null,
"microsoftFirstParty": null,
"publisherName": "Contoso",
"preferredSingleSignOnMode": null,
"preferredTokenSigningKeyThumbprint": null,
"preferredTokenSigningKeyEndDateTime": null,
"replyUrls": [],
"servicePrincipalNames": [
"23a223ba-bb90-4949-8232-1bf479189e9b"
],
"tags": [
"WindowsAzureActiveDirectoryIntegratedApp",
"WindowsAzureActiveDirectoryCustomSingleSignOnApplication"
],
"notificationEmailAddresses": [],
"samlSingleSignOnSettings": null,
"keyCredentials": [],
"passwordCredentials": []
}
}