Delete a Service Instance

put

/paas/api/v1.1/instancemgmt/{identityDomainId}/services/IntegrationCloud/instances/{service_name}

Deletes an existing service.

Request

Supported Media Types
Path Parameters
Header Parameters
Body ()
JSON payload for this REST endpoint
Root Schema : Request Body
Type: object
Title: Request Body
Show Source
Back to Top

Response

Supported Media Types

202 Response

Accepted
Body ()
Root Schema : accepted-response
Type: object
Show Source
Back to Top

Examples

The following example shows how to delete an Oracle Integration Classic Instance by submitting a PUT request on the REST resource using cURL.

Note:

The command in this example uses the URL structure https://example.com/resource-path, where example.com is the Oracle Cloud server to contact for your identity domain.

cURL Command

curl -v -X PUT -u jstein:Password -H "Content-type: application/vnd.com.oracle.oracloud.provisioning.Service+json" -H "X-ID-TENANT-NAME:ExampleIdentityDomain" -d '{"dbaName":"SYS","dbaPassword":"password","force":true,"skipBackupOnTerminate":true}'http://example.com/paas/core/api/v1.1/instancemgmt/ExampleIdentityDomain/services/IntegrationCloud/instances/test 

Example of Request Header

The following shows an example of the response header.

headers: Content-Type:application/vnd.com.oracle.oracloud.provisioning.Service+json
Authorization: <Basic Auth credentials>
X-ID-TENANT-NAME: <identity domain>

Example of Request Body

The following shows an example of the request body in JSON format.
{
  "dbaName": "<dba name>",
  "dbaPassword": "<DBaaS Password>",
  "force": true,
  "skipBackupOnTerminate": true
}
Back to Top