Deletes a device registry configuration.
Note: This is an admin API.
The URL, systemKey, and token this endpoint requires are obtained differently than others. To get those, do the following:
Click the Select project drop-down at the top of the IoT Core UI.
Click the Edit icon (pencil) next to the desired project.
Go to the SERVICE ACCOUNTS tab.
If a service account already exists, select it and choose DOWNLOAD CREDENTIALS. If a service account does not exist, create it and select DOWNLOAD CREDENTIALS.
A JSON file will be downloaded to your local machine. Open the file with an editor. Use the file’s systemKey, token, and URL as needed below.
HTTP request
DELETE {url}/api/v/4/webhook/execute/{systemKey}/cloudiot
Query parameters
Parameters | |
---|---|
|
The device registry’s name. For example, |
Header parameters
Parameters | |
---|---|
| See the note at the start of this document on where to find the token. |
Request body
The request body must be empty.
Response status codes
Code | Meaning |
---|---|
204 | Success |
Response body
If successful, the response body will be empty.
Example curl
curl 'https://iot.clearblade.com/api/v/4/webhook/execute/aae9b9b30c8aa4e49081c7eeb9bb07/cloudiot?name=projects/iot-core-test-363819/locations/us-central1/registries/two' -X DELETE -H 'ClearBlade-UserToken: {token}'
Using the instructions at the start of this document, replace the following:https://iot.clearblade.com
with your URL.aae9b9b30c8aa4e49081c7eeb9bb07
with your systemKey.
{token} with your token.
This command deletes a registry with registryId “two.” Replace the name with your registry’s name.