Skip to content

Latest commit

 

History

History
122 lines (87 loc) · 4.16 KB

File metadata and controls

122 lines (87 loc) · 4.16 KB
title group: deletePasswordSingleSignOnCredentials
description Delete password-based single sign-on credentials for a service principal that is associated to a group.
author AllisonAm
ms.localizationpriority medium
ms.subservice entra-groups
doc_type apiPageType
ms.date 11/30/2024

group: deletePasswordSingleSignOnCredentials

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

Delete the password-based single sign-on credentials for a given group to a given service principal.

[!INCLUDE national-cloud-support]

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.

[!INCLUDE permissions-table]

HTTP request

POST /groups/{groupsId}/deletePasswordSingleSignOnCredentials

Request headers

Name Description
Authorization Bearer {token}. Required. Learn more about authentication and authorization.
Content-Type application/json. Required.

Request body

In the request body, supply a JSON representation of the parameters.

The following table lists the parameters that are required when you call this action.

Parameter Type Description
id String The ID of the service principal linked to the credential set to delete.

Response

If successful, this action returns a 204 No Content response code.

Examples

Request

The following example shows a request.

POST https://graph.microsoft.com/beta/groups/314ac440-129f-4cb3-ad61-24ef4a7de1d9/deletePasswordSingleSignOnCredentials
Content-Type: application/json

{
  "id": "314ac440-129f-4cb3-ad61-24ef4a7de1d9"
}

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]


Response

The following example shows the response.

HTTP/1.1 204 No Content