Offboard a sensor
# Offboard a Sensor ### `POST /dm/v1/devices/sensors/offboard` Use this endpoint to offboard, or decommission, a sensor. ## 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 Started](https://thingspace.verizon.com/documentation/api-documentation.html#/http/connectivity-management/guides/getting-started/introduction-to-the-connectivity-management-api). |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/dm/v1/devices/sensors/offboard](/docs/specialized-apis/sensor-insights/api-endpoints/sensors/sensorinsightsoffboardsensorrequest) ## Request Parameters **Note:** All parameters are required unless marked *(optional)* | Parameter | Data Type | Description | | ---------- | --------- | ------------ | | **accountname** | string | The numeric name of the account and must include leading zeros. | | **configuration** |object| An object containing the `removesensor` object.| | **removesensor** |object| Details about the sensor being offboarded.| | **deveui** |string|The unique EUI64 address of the device.| ## Request Body Example Request: ```json { "accountname": "0000123456-00001", "configuration": { "removesensor": { "deveui": "The EUI64 address of the device" } } } ``` ## Success Response **Status 204** There is no response body. The only indication of success will be an HTML "204". ## Success Parameters None ## Failure Responses Example Response: ```json { "error": "Error name or code", "error_description": "A longer error description.", "cause": "A cause for the error" } ```