Les API sous la version /beta dans Microsoft Graph sont susceptibles d’être modifiées. L’utilisation de ces API dans des applications de production n’est pas prise en charge. Pour déterminer si une API est disponible dans v1.0, utilisez le sélecteur Version .
Valider la propriété d’un domaine.
Important: S’applique uniquement à un domaine non vérifié. Pour un domaine non vérifié, la propriété isVerified du domaine a la valeur false.
Remarque
La vérification d’un domaine via Microsoft Graph ne configure pas le domaine à utiliser avec Office 365 services comme Exchange. La configuration complète du domaine pour qu’il fonctionne avec les produits Microsoft 365 peut nécessiter des étapes supplémentaires. Pour plus d’informations, consultez Configuration de l’administrateur Microsoft 365.
Dans les scénarios délégués avec des comptes professionnels ou scolaires, l’utilisateur connecté doit se voir attribuer un rôle Microsoft Entra pris en charge ou un rôle personnalisé avec une autorisation de rôle prise en charge.
L’administrateur de noms de domaine est le rôle le moins privilégié pris en charge pour cette opération.
Requête HTTP
POST /domains/{id}/verify
Pour l’{id}, spécifiez le domaine avec son nom de domaine complet.
Dans le corps de la demande, fournissez une représentation JSON des paramètres.
Le tableau suivant répertorie les paramètres facultatifs lorsque vous appelez cette action.
Paramètre
Type
Description
forceTakeover
Boolean
Facultatif. Utilisé pour la prise de contrôle par l’administrateur externe d’un domaine non managé. La valeur par défaut de ce paramètre est false.
Si le domaine à vérifier est actuellement lié à un locataire non managé, mais que vous êtes propriétaire du domaine, utilisez ce paramètre pour prendre le contrôle de ce domaine. La prise de contrôle forcée réussit uniquement lorsque ce locataire a vérifié sa propriété du domaine en ajoutant les enregistrements TXT au bureau d’enregistrement de domaines. Pour plus d’informations, consultez Prendre le contrôle d’un répertoire non géré en tant qu’administrateur dans Microsoft Entra ID.
Réponse
Si elle réussit, cette méthode renvoie un code de réponse 200 OK et un objet domaine dans le corps de la réponse.
POST https://graph.microsoft.com/beta/domains/contoso.com/verify
// 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.Domains["{domain-id}"].Verify.PostAsync();
// Code snippets are only available for the latest major version. Current major version is $v0.*
// Dependencies
import (
"context"
msgraphsdk "github.com/microsoftgraph/msgraph-beta-sdk-go"
//other-imports
)
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=go
verify, err := graphClient.Domains().ByDomainId("domain-id").Verify().Post(context.Background(), nil)
// Code snippets are only available for the latest version. Current version is 6.x
GraphServiceClient graphClient = new GraphServiceClient(requestAdapter);
var result = graphClient.domains().byDomainId("{domain-id}").verify().post();
# Code snippets are only available for the latest version. Current version is 1.x
from msgraph_beta 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.domains.by_domain_id('domain-id').verify.post()
POST https://graph.microsoft.com/beta/domains/contoso.com/verify
{
"forceTakeover": true
}
// Code snippets are only available for the latest version. Current version is 5.x
// Dependencies
using Microsoft.Graph.Beta.Domains.Item.Verify;
var requestBody = new VerifyPostRequestBody
{
AdditionalData = new Dictionary<string, object>
{
{
"forceTakeover" , true
},
},
};
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=csharp
var result = await graphClient.Domains["{domain-id}"].Verify.PostAsync(requestBody);
// Code snippets are only available for the latest major version. Current major version is $v0.*
// Dependencies
import (
"context"
msgraphsdk "github.com/microsoftgraph/msgraph-beta-sdk-go"
graphdomains "github.com/microsoftgraph/msgraph-beta-sdk-go/domains"
//other-imports
)
requestBody := graphdomains.NewVerifyPostRequestBody()
additionalData := map[string]interface{}{
forceTakeover := true
requestBody.SetForceTakeover(&forceTakeover)
}
requestBody.SetAdditionalData(additionalData)
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=go
verify, err := graphClient.Domains().ByDomainId("domain-id").Verify().Post(context.Background(), requestBody, nil)
// Code snippets are only available for the latest version. Current version is 6.x
GraphServiceClient graphClient = new GraphServiceClient(requestAdapter);
com.microsoft.graph.beta.domains.item.verify.VerifyPostRequestBody verifyPostRequestBody = new com.microsoft.graph.beta.domains.item.verify.VerifyPostRequestBody();
HashMap<String, Object> additionalData = new HashMap<String, Object>();
additionalData.put("forceTakeover", true);
verifyPostRequestBody.setAdditionalData(additionalData);
var result = graphClient.domains().byDomainId("{domain-id}").verify().post(verifyPostRequestBody);
# Code snippets are only available for the latest version. Current version is 1.x
from msgraph_beta import GraphServiceClient
from msgraph_beta.generated.domains.item.verify.verify_post_request_body import VerifyPostRequestBody
# To initialize your graph_client, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=python
request_body = VerifyPostRequestBody(
additional_data = {
"force_takeover" : True,
}
)
result = await graph_client.domains.by_domain_id('domain-id').verify.post(request_body)