Abrufen von mailboxProtectionUnitsBulkAdditionJob
Namespace: microsoft.graph
Wichtig
Die APIs unter der /beta
Version in Microsoft Graph können sich ändern. Die Verwendung dieser APIs in Produktionsanwendungen wird nicht unterstützt. Um festzustellen, ob eine API in v1.0 verfügbar ist, verwenden Sie die Version Selektor.
Rufen Sie ein mailboxProtectionUnitsBulkAdditionJob-Objekt anhand der ID ab, die einer exchangeProtectionPolicy zugeordnet ist.
Diese API ist in den folgenden nationalen Cloudbereitstellungen verfügbar.
Weltweiter Service | US Government L4 | US Government L5 (DOD) | China, betrieben von 21Vianet |
---|---|---|---|
✅ | ❌ | ❌ | ❌ |
Berechtigungen
Wählen Sie die Berechtigung oder Berechtigungen aus, die für diese API als am wenigsten privilegiert markiert sind. Verwenden Sie eine höhere Berechtigung oder Berechtigungen nur, wenn Ihre App dies erfordert. Ausführliche Informationen zu delegierten Berechtigungen und Anwendungsberechtigungen finden Sie unter Berechtigungstypen. Weitere Informationen zu diesen Berechtigungen finden Sie in der Berechtigungsreferenz.
Berechtigungstyp | Berechtigungen mit den geringsten Berechtigungen | Berechtigungen mit höheren Berechtigungen |
---|---|---|
Delegiert (Geschäfts-, Schul- oder Unikonto) | BackupRestore-Configuration.Read.All | Nicht verfügbar. |
Delegiert (persönliches Microsoft-Konto) | Nicht unterstützt | Nicht unterstützt |
Anwendung | BackupRestore-Configuration.Read.All | Nicht verfügbar. |
HTTP-Anforderung
GET /solutions/backupRestore/exchangeProtectionPolicies/{mailboxProtectionPolicyId}/mailboxProtectionUnitsBulkAdditionJobs/{mailboxProtectionUnitsBulkAdditionJobId}
Anforderungsheader
Name | Beschreibung |
---|---|
Authorization | Bearer {token}. Erforderlich. Weitere Informationen zu Authentifizierung und Autorisierung. |
Anforderungstext
Geben Sie keinen Anforderungstext für diese Methode an.
Antwort
Bei erfolgreicher Ausführung gibt die Methode den 200 OK
Antwortcode und ein mailboxProtectionUnitsBulkAdditionJob-Objekt im Antworttext zurück.
Beispiele
Anforderung
Das folgende Beispiel zeigt eine Anfrage.
GET https://graph.microsoft.com/beta/solutions/backupRestore/exchangeProtectionPolicies/71633878-8321-4950-bfaf-ed285bdd1461/mailboxProtectionUnitsBulkAdditionJobs/71633878-8321-4950-bfaf-ed285bdd1461
Antwort
Das folgende Beispiel zeigt die Antwort.
HTTP/1.1 200 OK
Content-Location: https://graph.microsoft.com/beta/solutions/backupRestore/exchangeProtectionPolicies/71633878-8321-4950-bfaf-ed285bdd1461/mailboxProtectionUnitsBulkAdditionJobs/61633878-8321-4950-bfaf-ed285bdd1461
{
"@odata.type": "#microsoft.graph.mailboxProtectionUnitsBulkAdditionJob",
"id":"61633878-8321-4950-bfaf-ed285bdd1461",
"displayName" : "mailboxes-I",
"mailboxes" : ["amala@contoso.com", "conrad@contoso.com", "lothar@contoso.com"],
"directoryObjectIds": ["71633878-8321-4950-bfaf-ed285bdd1461"],
"status" : "CompletedWithErrors",
"createdBy":{
"application":{
"id":"1fec8e78-bce4-4aaf-ab1b-5451cc387264"
},
"user":{
"id":"845457dc-4bb2-4815-bef3-8628ebd1952e"
}
},
"createdDateTime":"2015-06-19T12-01-03.45Z",
"lastModifiedBy":{
"application":{
"id":"1fec8e78-bce4-4aaf-ab1b-5451cc387264"
},
"user":{
"id":"845457dc-4bb2-4815-bef3-8628ebd1952e"
}
},
"lastModifiedDateTime":"2015-06-19T12-01-03.45Z",
"error":{
"code" : "ProtectionResourcesNotFound",
"message": "Errors while resolving protection resources",
"details":
[
{
"code": "EmailNotFound",
"message": "Email address 'amala@contoso.com' not found in directory",
"target" : "amala@contoso.com"
},
{
"code": "EmailNotFound",
"message": "Email address 'conrad@contoso.com' not found in directory",
"target" : "conrad@contoso.com"
},
{
"code": "EmailNotFound",
"message": "Email address 'lothar@contoso.com' not found in directory",
"target" : "lothar@contoso.com"
}
]
}
}