Delete externalConnection
Article
08/09/2022
2 minutes to read
8 contributors
Feedback
In this article
Namespace: microsoft.graph.externalConnectors
Deletes an externalConnection object.
Permissions
One of the following permissions is required to call this API. To learn more, including how to choose permissions, see Permissions .
Permission type
Permissions (from least to most privileged)
Delegated (work or school account)
ExternalConnection.ReadWrite.OwnedBy, ExternalConnection.ReadWrite.All
Delegated (personal Microsoft account)
Not applicable
Application
ExternalConnection.ReadWrite.OwnedBy, ExternalConnection.ReadWrite.All
HTTP request
DELETE /external/connections/{connectionsId}
Name
Description
Authorization
Bearer {token}. Required.
Request body
Do not supply a request body for this method.
Response
If successful, this method returns 202 Accepted
response code. It does not return anything in the response body.
Examples
Request
DELETE https://graph.microsoft.com/v1.0/external/connections/contosohr
GraphServiceClient graphClient = new GraphServiceClient( authProvider );
await graphClient.External.Connections["{externalConnectors.externalConnection-id}"]
.Request()
.DeleteAsync();
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation .
const options = {
authProvider,
};
const client = Client.init(options);
await client.api('/external/connections/contosohr')
.delete();
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation .
GraphServiceClient graphClient = GraphServiceClient.builder().authenticationProvider( authProvider ).buildClient();
graphClient.external().connections("contosohr")
.buildRequest()
.delete();
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation .
//THE GO SDK IS IN PREVIEW. NON-PRODUCTION USE ONLY
graphClient := msgraphsdk.NewGraphServiceClient(requestAdapter)
graphClient.External().ConnectionsById("externalConnection-id").Delete(context.Background(), nil)
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation .
<?php
// THIS SNIPPET IS A PREVIEW FOR THE KIOTA BASED SDK. NON-PRODUCTION USE ONLY
$graphServiceClient = new GraphServiceClient($requestAdapter);
$graphServiceClient->external()->connectionsById('externalConnection-id')->delete();
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation .
Response
The following is an example of the response.
HTTP/1.1 202 Accepted