Delete a entitlement

delete

/apiplatform/management/v1/plans/{planId}/entitlements/{entitlementId}

Deletes the {entitlementId} entitlement from the {planId} plan.

User must have Plan Manager or API Manger roles and must have Manage Plan or Entitle API to Plan grants on the Plan and Manage API or Entitle API grants on the API.

Request

Supported Media Types
Path Parameters
Back to Top

Response

Supported Media Types

204 Response

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

curl -X DELETE 
-H "Authorization: Bearer access_token"
"https://example.com/apiplatform/management/v1/plans/{planId}/entitlements/{entitlementId}"

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: Mon, 12 Feb 2018 19:02:35 GMT
X-oracle-dms-ecid: dd439614-7d4f-47ad-a1ea-a25a74ec9403-0000032d
X-oracle-dms-rid: 0:1
Via: 1.1 otd_opc
Proxy-agent: Oracle-Traffic-Director/12.2.1.0.0
Back to Top