Namespace: microsoft.graph.externalConnectors
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.
Retrieve the properties of a connectionOperation.
This API is available in the following national cloud deployments.
| Global service |
US Government L4 |
US Government L5 (DOD) |
China operated by 21Vianet |
| ✅ |
✅ |
✅ |
❌ |
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 permissions |
Higher privileged permissions |
| Delegated (work or school account) |
ExternalConnection.ReadWrite.OwnedBy |
ExternalConnection.Read.All, ExternalConnection.ReadWrite.All |
| Delegated (personal Microsoft account) |
Not supported. |
Not supported. |
| Application |
ExternalConnection.ReadWrite.OwnedBy |
ExternalConnection.Read.All, ExternalConnection.ReadWrite.All |
HTTP request
GET /external/connections/{connection-id}/operations/{operation-id}
Request body
Don't supply a request body for this method.
Response
If successful, this method returns a 200 OK response code and the requested connectionOperation object in the response body.
Examples
Request
The following example shows a request.
GET https://graph.microsoft.com/beta/external/connections/contosohr/operations/3ed1595a-4bae-43c2-acda-ef973e581323
// 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.External.Connections["{externalConnection-id}"].Operations["{connectionOperation-id}"].GetAsync();
// 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
operations, err := graphClient.External().Connections().ByExternalConnectionId("externalConnection-id").Operations().ByConnectionOperationId("connectionOperation-id").Get(context.Background(), nil)
// Code snippets are only available for the latest version. Current version is 6.x
GraphServiceClient graphClient = new GraphServiceClient(requestAdapter);
com.microsoft.graph.models.externalconnectors.ConnectionOperation result = graphClient.external().connections().byExternalConnectionId("{externalConnection-id}").operations().byConnectionOperationId("{connectionOperation-id}").get();
const options = {
authProvider,
};
const client = Client.init(options);
let connectionOperation = await client.api('/external/connections/contosohr/operations/3ed1595a-4bae-43c2-acda-ef973e581323')
.version('beta')
.get();
<?php
use Microsoft\Graph\Beta\GraphServiceClient;
$graphServiceClient = new GraphServiceClient($tokenRequestContext, $scopes);
$result = $graphServiceClient->external()->connections()->byExternalConnectionId('externalConnection-id')->operations()->byConnectionOperationId('connectionOperation-id')->get()->wait();
Import-Module Microsoft.Graph.Beta.Search
Get-MgBetaExternalConnectionOperation -ExternalConnectionId $externalConnectionId -ConnectionOperationId $connectionOperationId
# 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.external.connections.by_external_connection_id('externalConnection-id').operations.by_connection_operation_id('connectionOperation-id').get()
Response
The following example shows the response.
HTTP/1.1 200 OK
Content-type: application/json
{
"id": "3ed1595a-4bae-43c2-acda-ef973e581323",
"status": "failed",
"error": {
"message": "Server error, something went wrong"
}
}