Delete Integration, Specified by ID

delete

/iot/api/v2/apps/{app-id}/integrations/{integration-id}

Delete Integration, specified by Integration ID. All the Integration's sub-resources will also be deleted.

Request

Path Parameters
Back to Top

Response

204 Response

Successfully processed

401 Response

Unauthorized. The request requires user authentication.

403 Response

Forbidden. The server understood the request, but is refusing to fulfill it. Authorization will not help and the request SHOULD NOT be repeated.

404 Response

Not Found. The server has not found anything matching the Request-URI. No indication is given of whether the condition is temporary or permanent.
Back to Top

Examples

The following example shows how to delete the Integration instance 0-TQJQ under Application 0-RYJQ by submitting a PUT request on the REST resource using cURL For more information about cURL, see Use cURL.

Note:

In the request, iotserver will be replaced by name and port of your assigned Oracle IoT Cloud Service instance. The format of the Cloud Service instance is myinstance-myidentitydomain.iot.us.oraclecloud.com and the default port is 443.
curl -i -X DELETE -H 'Authorization:Basic aW90OndlbGNvbWUx'  "http://iotserver/iot/api/v2/apps/0-RYJQ/integrations/0-TQJQ"

Example of Response Header

The following example shows the contents of the response to the deletion of the Enterprise integration instance 0-TQJQ. Note, there is no body returned in this case.

HTTP/1.1 200 no content
Back to Top