Revoke an application grant from a user

delete

/developers/services/v1/applications/{id}/grants/{grantType}/users/{userId}

Revokes the {grantType} grant for the {appId} application from the {userId} user.

Users accessing this resource must be issued the API Manager, or Application Developer role and must be issued the Manage Application grant for the specified application.

Request

Path Parameters
Back to Top

Response

204 Response

The grant was deleted.

403 Response

Forbidden.
Body ()
Root Schema : Error
Type: object
Show Source
Nested Schema : errorDetails
Type: array
additional errors
Show Source

500 Response

Unexpected error.
Body ()
Root Schema : Error
Type: object
Show Source
Nested Schema : errorDetails
Type: array
additional errors
Show Source
Back to Top

Examples

The following example shows how to revoke the {grantType} grant for the {appId} application from the {userId} user by submitting a DELETE request on the REST resource using cURL. For more information about cUR, see Use cURL

curl -i -X DELETE 
-u apicsadmin:password
https://example.com:443/developers/services/v1/applications/{id}/grants/{grantType}/users/{userId}

{id} is the unique ID for an application. To retrieve available applications, see Get applications.

Example of Response Headers

The following shows an example of the response headers.

HTTP/1.1 204 No Content
Server: Oracle Traffic Director
Date: Wed, 20 Dec 2017 05:19:46 GMT
Content-type: application/json
X-oracle-dms-ecid: 6^3rv0_eR00000000
X-oracle-dms-rid: 0:1
Back to Top