Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
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.
Validate the configuration of a cross-tenant migration job asynchronously. This action doesn't migrate any content, but goes through validation for the specified workloads to find any errors or misconfigurations that affect an actual migration job. The job must be in a submitted or validateFailed status before you can call this action.
This action is asynchronous. After you call the validate API, poll the Get crossTenantMigrationJob endpoint to check for a terminal status of validatePassed or validateFailed.
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 permission | Higher privileged permissions |
|---|---|---|
| Delegated (work or school account) | Not supported. | Not supported. |
| Delegated (personal Microsoft account) | Not supported. | Not supported. |
| Application | Not supported. | Not supported. |
Important
For delegated access using work or school accounts, the signed-in user must be assigned a supported Microsoft Entra role or a custom role that grants the permissions required for this operation. This operation supports the following built-in roles, which provide only the least privilege necessary:
- Microsoft 365 Migration Administrator
- Global Administrator
HTTP request
POST /solutions/migrations/crossTenantMigrationJobs/{crossTenantMigrationJobId}/validate
Request headers
| Name | Description |
|---|---|
| Authorization | Bearer {token}. Required. Learn more about authentication and authorization. |
Request body
Don't supply a request body for this method.
Response
If successful, this action returns a 200 OK response code and a crossTenantMigrationJob in the response body.
This method can also return the following error codes in the response body.
| Status code | Description |
|---|---|
404 Not Found |
The specified crossTenantMigrationJob wasn't found. |
409 Conflict |
The job isn't in a valid status for validation. The job must be in submitted or validateFailed status. |
Examples
Request
The following example shows a request.
POST https://graph.microsoft.com/beta/solutions/migrations/crossTenantMigrationJobs/add14989-2b21-4001-81bd-a18b0bac1dea/validate
Response
The following example shows the response.
Note: The response object shown here might be shortened for readability.
HTTP/1.1 200 OK
Content-Type: application/json
{
"@odata.context": "https://graph.microsoft.com/beta/$metadata#microsoft.graph.crossTenantMigrationJob",
"id": "add14989-2b21-4001-81bd-a18b0bac1dea",
"displayName": "Contoso_migration_job",
"status": "validateSubmitted",
"jobType": "validate",
"message": "Validation job has been submitted successfully",
"completeAfterDateTime": "2026-05-22T17:14:52Z",
"sourceTenantId": "12345678-1234-1234-1234-123456789012",
"targetTenantId": "87654321-4321-4321-4321-210987654321",
"resourceType": "users",
"resources": [],
"workloads": [
"Teams",
"Exchange",
"ODSP"
],
"createdBy": "admin@fabrikam.onmicrosoft.com",
"createdDateTime": "2026-05-04T20:55:10.5427196Z",
"lastUpdatedDateTime": "2026-05-04T20:55:10Z",
"exchangeSettings": {
"targetDeliveryDomain": "fabrikam.com",
"sourceEndpoint": "EXOHandler"
}
}