Bulk unprovision things
DELETEhttps://apis.<domain>/iot/provision/things/bulk
Authorization: http
name: bearerAuthtype: httpscheme: bearerdescription: * Users access: "Authorization: Bearer <user_token>"
Remove multiple things by ID.
Authorization Action:
core:unprovision:things
Request
- application/json
Body
arrayrequired
- Array [
- string
- ]
Responses
- 204
- 400
- 401
- 500
No Content - things removed successfully
Malformed request body
Unauthorized
Unexpected server-side error occurred.
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L -X DELETE 'https://apis.<domain>/iot/provision/things/bulk' \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer <TOKEN>' \
--data-raw '[
"string"
]'