You can use the Cloud Administration Delete User Device API to delete a user's device for the provided User ID and Device ID.
You can use the Cloud Administration Delete User Device API to delete a user's device for the provided User ID and Device ID.
Note: Only one user device can be deleted per request.
Authentication
Clients calling this API must authenticate themselves by including a JSON Web Token in a request. For instructions on using this token, see Authentication for the Cloud Administration APIs .
Administrative Roles
This API can use an API key that is associated with either the Super Administrator or Help Desk Administrator role. For more information, see Manage the Cloud Administration API Keys.
Software Developer Kit
You can download the API Software Developer Kit (SDK) from Cloud Administration REST API Download.
Request Requirements
Use the following information to delete a particular user's device.
DELETE | /AdminInterface/restapi/v1/users/<userId>/devices/<deviceId> | 200, 400, 403, 404, 500 |
Example Request Data
The following example displays a request to delete a device.
DELETE /AdminInterface/restapi/vi/users/<userid>/devices/<deviceId>
Accept: application/json
Authorization: Bearer <JWT token>
The delete device request does not contain any parameters.
Resource Identifiers
The following table shows the resource identifiers for a user and a device that are required in the request URL.
Note: Response examples and property response descriptions are not available for this API.
Response Codes
The following table shows response codes and descriptions for this API.
200 | User and device are successfully found. |
400 | User ID is not provided as parameter. |
403 | Not authorized to perform the request. |
404 | User and/or device is not found. |
500 | Internal error occurred when processing the request. |
You are here
Table of Contents > Cloud Administration APIs > Cloud Administration Delete User Device API