DELETE /campaigns/{acc}/{campaignId}
Allows you to cancel a software upgrade. A software upgrade can be canceled before the start date. After the start date, but before the end date, the software upgrade can be aborted, but not canceled.
DELETE https://thingspace.verizon.com/api/fota/v2/campaigns/{acc}/{campaignId}
Parameter Name | Data Type | Description |
---|---|---|
acc required |
string | Account identifier. |
campaignId required |
string | Software upgrade identifier, returned in the "id" value of the POST /{campaigns}/acc response when the upgrade was scheduled. |
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. |
None
Request a software upgrade.
curl -X DELETE https://thingspace.verizon.com/api/fota/v2/campaigns/$ACC/$CAMPAIGN_ID -H 'Authorization: Bearer $AUTH_TOKEN' -H 'VZ-M2M-Token: $M2M_TOKEN' -H 'Content-Type: application/json' -d
{
Status 200
Parameter Name | Data Type | Description |
---|---|---|
success | Boolean | True or false. |
{
"success": true
}
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.