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 Azure AD application gallery into your directory. You can also use this API to instantiate non-gallery apps. Use the following ID for the applicationTemplate object: 8adf8e6e-67b2-4cf2-a259-e3dc5476c621
.
Permissions
One of the following permissions is required to call this API. To learn more, including how to choose permissions, see Permissions.
Permission type | Permissions (from least to most privileged) |
---|---|
Delegated (work or school account) | Application.ReadWrite.All, Directory.ReadWrite.All |
Delegated (personal Microsoft account) | Not supported. |
Application | Application.ReadWrite.OwnedBy, Application.ReadWrite.All, Directory.ReadWrite.All |
HTTP request
POST /applicationTemplates/{id}/instantiate
To instantiate non-gallery apps, use the 8adf8e6e-67b2-4cf2-a259-e3dc5476c621
for the {applicationTemplate-id}
.
Request headers
Name | Description |
---|---|
Authorization | Bearer {code} |
Request body
In the request body, provide a JSON object with the following parameters.
Parameter | Type | Description |
---|---|---|
displayName | String | Custom name of the application |
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 is an example of the request. The request URL specifies 8adf8e6e-67b2-4cf2-a259-e3dc5476c621
as the application template ID. This means 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 is an example of 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": []
}
}
Feedback
Submit and view feedback for