Delete a Batch Registration Request

delete

/iot/api/v2/registrations/{registration-id}

Deletes the specified batch registration request.

Request

Path Parameters
Back to Top

Response

Back to Top

Examples

The following example shows how to delete a batch registration request with a specific ID by submitting a DELETE request on the REST resource using cURL. Note that 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. For more information about cURL, see Use cURL.

curl -k -X DELETE -u "username@example.com:password" https://iotserver/iot/api/v2/registrations/0-BU

Example of Response Header

The following shows an example of the response header.

HTTP/1.1 204 No Content



Complete cURL Example

The following example shows a complete cURL command that you can use to perform the described operation:

curl -X DELETE 
   -u <username>:<password>
   https://iotserver/iot/api/v2/registrations/51a26c9873ef-751d



Note that in the request, https://iotserver will be replaced by the name and port of your assigned IoT Cloud Service instance. The format of the Cloud Service instance is https://myinstance-myidentitydomain.iot.us.oraclecloud.com and the default port is 443.
Back to Top