Delete User Consent's

delete

/oam/services/rest/consent

The REST API enables Administrator to delete consents related to a User. Multiple consents can be deleted simultaneously by specifing multiple consent identifier.

Request

Supported Media Types
Query Parameters
  • Unique Consent Identifier that needs to be revoked. The value of this parameter can be fetched from GET Consent response.
  • User name/identifier who's consents needs to be retrieved.
Header Parameters
Back to Top

Response

Supported Media Types

200 Response

Sucessfully deleted user consents - detail
Body ()
Root Schema : consent
Type: array
Array of user consent
Show Source

400 Response

Failed to delete user consent - detail
Body ()
Back to Top

Examples

The following example shows a sample request and response against the Admin Server for deleting the consents.

cURL Command to Delete Consents

curl --location --request DELETE 'https://<AdminServerHost:AdminServerPort>/oam/services/rest/consent?cid=ebe683b9-0345-3c35-a21d-35e57958ed21&userId=DemoUser&cid=8c1d5d3a-dc74-3939-aa72-03c12fcff3b3' \
--header 'X-OAUTH-IDENTITY-DOMAIN-NAME: DemoDomain' \
--header 'Authorization: Basic d2VibG9naWM6d2VsY29tZTE='

Sample Response

{
    "consents": [
        {
            "clientId": "DemoClient",
            "consentId": "ebe683b9-0345-3c35-a21d-35e57958ed21",
            "createTimeStamp": "Wed Apr 08 22:12:15 PDT 2020",
            "resourceId": "506a50c2-a892-49ee-85ad-9993169a18bf",
            "scopes": [
                "DemoResource.editDemoRes",
                "DemoResource.delDemoRes",
                "DemoResource.viewDemoRes"
            ],
            "valid": false
        },
        {
            "clientId": "DemoClient",
            "consentId": "8c1d5d3a-dc74-3939-aa72-03c12fcff3b3",
            "createTimeStamp": "Wed Apr 08 22:12:15 PDT 2020",
            "resourceId": "OPENID_MGMT_RESOURCE",
            "scopes": [
                "openid",
                "profile",
                "email"
            ],
            "valid": false
        }
    ]
}
Back to Top