API Reference
# Drop Device Credentials for Hyper Precise Drop (remove) the credentials assigned to a device for Hyper Precise. ### `POST /credentials/drop` ## Header Parameters The request header must set the content-type to JSON, contain a current ThingSpace authorization token and a current VZ-M2M session token. For more details on how to get these tokens, visit [Getting Tokens](https://thingspace.verizon.com/documentation/api-documentation.html#/http/guided-walkthroughs/how-to-obtain-tokens). |Parameter Name|Data Type|Description| |-----|-----|-----| | **Authorization** *(required)* | string | HTTP Authorization request header containing a valid Bearer token: `Authorization: Bearer {token}` | | **VZ-M2M-Token** *(required)* | string | A valid session token returned by a Connectivity Management `POST /session/login` request. | | **Content-Type** *(required)* | string | Must be `application/json`. | ## HTTP Request [POST https://thingspace.verizon.com/api/auth/v1/credentials/drop](/docs/specialized-apis/hyper-precise-location/api-endpoints/manage-device-credentials/drop-credentials/dropcredentials) ## Request Parameters | Parameter | Data Type | Description | | ---------- | --------- | ------------ | | **ECPD** *(required)* | string | The customer's ID value in the Enterprise Customer Profile Database. This is a 6-digit value with no leading zeroes. | | **accountName** *(required)* | string | The numeric name of the account in the format "0000123456-00001". Leading zeroes must be included. | | **items** *(required)* | array | An array of International Mobile Equipment Identifier (IMEI) values. | ## Request Body Example Request: ```json { "ECPD": "Enterprise Customer Profile ID", "accountNumber": "0000123456-00001", "items": [ { "imei": "15-digit IMEI" } ] } ``` ## Success Response **Status 200** A successful response will return the IMEI values of the devices that have credentials removed. Example Response: ```json { "items": [ { "imei": "15-digit IMEI" } ] } ``` ## Success Parameters | Parameter | Data Type | Description | | ---------- | -------- | ----------- | | **items** | array | An array of `imei` values. | | **imei** | string | The IMEI of the device responding. | ## Failure Responses Example Response: ```json { "errorCode": "The 3-digit HTML error code", "errorMessage": "string" } ```