Delete a subscription

delete

/apiplatform/management/v1/applications/{appId}/subscriptions/{subId}

Deletes, cancels, or dismisses the {subId} subscription for the {appId} application. The action performed depends on the subscription state: if SUBSCRIBED or SUSPENDED, the subscription is deleted; if REQUESTING, the subscription is cancelled; if REJECTED, the subscription is dismissed.

Users requesting this resource must be assigned the API Manager, Plan Manager, or Application Developer role and must be issued the Subscribe or Manage Subscribed Application grants for associated plan. Users must also be issued the Manage Application grant for the specified application to delete a SUBSCRIBED or SUSPENDED subscription, cancel a REQUESTING subscription, or dismiss a REJECTED subscription.

Request

Supported Media Types
Path Parameters
Back to Top

Response

Supported Media Types

204 Response

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

curl -i -X DELETE 
-u apicsadmin:password
https://example.com/apiplatform/management/v1/applications/{appId}/subscriptions/{subId}
  • {appId} is the unique Id for an application. To retrieve available application Ids, see Get Applications.

  • {subId} is the unique Id for a subscription. To retrieve available subscription Ids, see Get subscriptions.

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:  Tue, 14 Mar 2017 09:22:43 GMT
X-oracle-dms-ecid:  f102c33f-1c5b-4409-806d-03bf5706c492-0001dcf8
X-oracle-dms-rid: 0:1
Via: 1.1 otd_opc
Proxy-agent: Oracle-Traffic-Director/12.2.1.0.0
Back to Top