Revoke an application grant from a group

delete

/apiplatform/management/v1/applications/{appId}/grants/{grantType}/groups/{groupId}

Revokes the {grantType} grant for the {appId} application from the {groupId} group.

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

Supported Media Types
Path Parameters
Back to Top

Response

Supported Media Types

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 an application grant from a group by submitting a DELETE request on the REST resource using cURL. For more information about cURL, see Use cURL

curl -i -X DELETE 
-H "Authorization: Bearer access_token"
https://example.com/apiplatform/management/v1/applications/{appId}/grants/{grantType}/groups/{groupId}
  • {appId} is the unique Id for an application. To retrieve available application Ids, see Get Applications.
  • {grantType} is the type of grant issued for the application. To retrieve the type of grants that can be issued for an application, see Get application grants.

  • {groupId} is the unique Id for a group. To retrieve the groups eligible to receive the application grant, see Get eligible grantees.

Example of Response Headers

The following shows an example of the response headers.

HTTP/1.1 204 No Content
Server: Oracle-Traffic-Director/12.2.1.0.0
Date:  Wed, 22 Mar 2017 08:34:10 GMT
X-oracle-dms-ecid:  49d14691-2176-4c99-aed3-38438604f528-00001e4e
X-oracle-dms-rid: 0:1
Via: 1.1 otd_opc
Proxy-agent: Oracle-Traffic-Director/12.2.1.0.0
Back to Top