Delete machine type by ID

delete

/productionMonitoring/clientapi/v2/machineTypes/{type-id}

This operation deletes information for the specified machine type. This method supports the request header with name 'X-ORACLE-IOT-ORG', which allows targeting requests to different organizations. The value of this request header should contain the organization identifier.

Request

Path Parameters
  • Identifier created by the Oracle IoT Cloud Service for the machine type
Header Parameters
  • This method supports the request header with name 'X-ORACLE-IOT-ORG', which allows targeting requests to different organizations. The value of this request header should contain the organization identifier.
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.

409 Response

Conflict. The request could not be completed due to a conflict with the current state of the resource. This code is only allowed in situations where it is expected that the user might be able to resolve the conflict and resubmit the request.
Back to Top

Examples




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/productionMonitoring/clientapi/v2/machineTypes/ca84ad46302-1839



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