DELETE /logging/{acc}/devices
Disables logging for specified devices.
Logging automatically turns off on a device after 7 days, but if you want to disable logging before then, you can disable logging for a device or list of devices.
DELETE https://thingspace.verizon.com/api/fota/v2/logging/{acc}/devices
You must include the account name in the path.
Parameter Name | Data Type | Description |
---|---|---|
acc required |
string | The name of the account for which you to disable logging. An account name is usually numeric, and must include any leading zeros. |
The request header must contain a current ThingSpace authorization token and a current VZ-M2M-session token.
Parameter Name | Data Type | Description |
---|---|---|
Authorization required |
string | HTTP Authorization request header containing a valid Bearer token. |
VZ-M2M-Token required |
string | A valid session token returned by a Connectivity Management POST /session/login request. |
Parameter Name | Data Type | Description |
---|---|---|
deviceLogging | array of deviceIds objects | The list of device ids for which you want to disable logging. |
deviceIds | string | List of device IMEI identifiers. |
Enable logging for devices:
curl -X DELETE https://thingspace.verizon.com/api/fota/v2/logging/$ACC/devices -H 'Authorization: Bearer $AUTH_TOKEN' -H 'VZ-M2M-Token: $M2M_TOKEN' -d
'{
deviceIds: [
"990013907835573",
"991124018926684",
"992234129057795",
"998891785613351",
"990013907835573"
]
}'
Status 200
A success response contains the 200 code as confirmation of disabling logging for the specified devices.
{
"success"
}
Status 400
All error messages are returned in this format:
{
"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.