Get logs for a specific device
# Get Logging for a Specific Device ### `GET /logging/{accountName}/devices/{deviceId}/logs` Gets logs for a specific device. ## HTTP Request GET [https://thingspace.verizon.com/api/fota/v2/logging/{accountName}/devices/{deviceId}/logs](/docs/premium-apis/software-management/software-management-v2/api-endpoints/client-logging/listdevicelogs) ## Resource Path Parameters You must include the account name and the deviceId in the path. | Parameter Name | Data Type | Description | |:----------------|:-----------|:-------------| | **accountName** <br> *required* | string | The name of the account for which you want the list of devices. An account name is usually numeric, and must include any leading zeros. | | **deviceId** <br> *required* | required string | The device IMEI identifier. | ## Header Parameters The request header must 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/session-management/guides/getting-started). | Parameter Name | Data Type | Description | |:-----------------------|:-----------|:-----------------------------------------------------------------------------| | **Authorization** <br> _required_ | string | HTTP Authorization bearer token: <br> `Authorization: Bearer {token}` | | **VZ-M2M-Token** <br> _required_ | string | A valid session token: <br> `VZ-M2M-Token: {M2Mtoken}` | ## Request Body None. ## Example Request Disable logging for a specific devices: ```json curl -X DELETE https://thingspace.verizon.com/api/fota/v2/logging/$ACC/devices/$DEVICEID \ -H 'Authorization: Bearer $AUTH_TOKEN' \ -H 'VZ-M2M-Token: $M2M_TOKEN' ``` ## Success Responses **Status 200** A success response contains a list of device logs. ## Example Success Response ```json [ { "deviceId": "990013907835573", "logTime": "2020-10-22T19:29:50.901Z", "logType": "string", "eventLog": "string", "binaryLogFileBase64": "string", "binaryLogFilename": "string" } ] ``` ## Failure Responses **Status 400** All error messages are returned in this format: ```json { "errorCode": "error code string", "errorMessage": "error message string" } ``` Error codes and messages are listed on the Error Messages page, along with explanations and suggestions for corrective actions.