appleManagedIdentityProvider resource type

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.

Represents the Apple identity provider in an Azure AD B2C tenant.

You can configure Apple as a social identity provider for an Azure AD B2C tenant. Based on the information, Apple provides, the API generates a client secret. Apple needs the secret to be renewed every six months. You have to manually rotate the secret.

Inherits from identityProviderBase.

Methods

Method Return Type Description
List identityProviderBase collection Retrieve all identity providers configured in a tenant, including the Apple identity providers. There's no way to retrieve only the Apple identity providers in a tenant.
Create appleManagedIdentityProvider Create a new Apple identity provider configuration.
Get appleManagedIdentityProvider Retrieve properties of the Apple identity provider configuration.
Update None Update the Apple identity provider configuration.
Delete None Delete the Apple identity provider configuration.
List available provider types String collection Retrieve all available identity provider types available in the tenant.

Properties

Property Type Description
certificateData String The certificate data, which is a long string of text from the certificate. Can be null.
developerId String The Apple developer identifier. Required.
displayName String The display name of the identity provider. Inherited from identityProviderBase.
id String The identifier of the identity provider. Inherited from identityProviderBase. Read-only.
keyId String The Apple key identifier. Required.
serviceId String The Apple service identifier. Required.

Retrieve the developerId, serviceId, keyId, and the certificateData from the Apple developer portal. For more information, follow the guide to create an Apple ID application.

JSON representation

The following JSON representation shows the resource type.

{
    "certificateData": "String",
    "displayName": "String",
    "developerId": "String",
    "id": "String",
    "keyId": "String",
    "serviceId": "String"
}