Modify a scheduled firmware upgrade
# Change Campaign Dates and Time Windows ### `PUT /campaigns/{accountName}/{campaignId}/dates` Allows you to change campaign dates and time windows. **Note:** Campaign time windows for downloading and installing software are available as long as the device OEM supports this. (The devices must support date windows, but the device OEM may download and install once they checked-in, provided they are in the date range.) ## Uses and Requirements The following limitations apply to changing campaign dates and time windows: - Before the campaign starts, you can: - Change the campaign start date - Add or remove campaign time windows - Change the end date - After the campaign has begun, but before it ends, you can: - Change the end date to **no earlier than +24 hours from now** - Add more download windows, but not remove any existing download windows - Add more install windows, but not remove any existing install windows - If you are modifying any campaign dates or windows, you must provide the full payload in the request, including any modified fields. ## HTTP Request PUT [https://thingspace.verizon.com/api/fota/v2/campaigns/{accountName}/{campaignId}/dates](/docs/premium-apis/software-management/software-management-v2/api-endpoints/campaigns-v2/updatecampaigndates) ### Resource Path and Query Parameters | Parameter Name | Data Type | Description | |:----------------|:-----------|:-------------| | **accountName** <br> _required_ | string | Account identifier. | | **campaignId** <br> _required_ | string | Software upgrade identifier, returned in the "id" value of the `POST /{campaigns}/acc` response when the upgrade was scheduled. | ## 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 The request body identifies the devices that you want to upgrade. | Parameter Name | Data Type | Description | |:----------------|:-----------|:-------------| | startDate <br> *required* | string($date) | Campaign start date. | | endDate <br> *required* | string($date) | Campaign end date. | | downloadAfterDate | string($date) | Specifies the starting date the client should download the package. If null, client downloads as soon as possible. | | downloadTimeWindowList | Array of startTime and endTime objects | List of allowed download time windows. | | downloadTimeWindowList.startTime <br> *required* | integer | Start hour in range [0-23], current hour >= startTime. When the current hour falls between the startTime and the endTime, it starts. | | downloadTimeWindowList.endTime <br> *required* | integer | End hour in range [1-24], current hour < endTime. | | installAfterDate | string($date) | The date after which you will install the package. If null, install as soon as possible. | | installTimeWindowList | Array of startTime and endTime objects | List of allowed install time windows. | | installTimeWindowList.startTime <br> *required* | integer | Start hour in range [0-23], current hour >= startTime. When the current hour falls between the startTime and the endTime, it starts. | | installTimeWindowList.endTime <br> *required* | integer | End hour in range [1-24], current hour < endTime. | ## Example Request if Modifying Existing Time Windows Modify a software upgrade. ```json curl -X PUT https://thingspace.verizon.com/api/fota/v2/campaigns/$ACC/$CAMPAIGN_ID/dates -H 'Authorization: Bearer $AUTH_TOKEN' -H 'VZ-M2M-Token: $M2M_TOKEN' -H 'Content-Type: application/json' -d { "startDate": "2020-08-21", "endDate": "2020-08-22", "downloadAfterDate": "2020-08-21", "downloadTimeWindowList": [ { "startTime": 3, "endTime": 4 } ], "installAfterDate": "2020-08-21", "installTimeWindowList": [ { "startTime": 5, "endTime": 6 } ] } ``` ## Example Request if Adding Additional Time Windows In this example, some fields are unchanged from the original request, but even unchanged fields must be provided in the requested. This request also includes an additional downloadTimeWindowList and an additional installTimeWindowList. ```json curl -X PUT https://thingspace.verizon.com/api/fota/v2/campaigns/$ACC/$CAMPAIGN_ID/dates -H 'Authorization: Bearer $AUTH_TOKEN' -H 'VZ-M2M-Token: $M2M_TOKEN' -H 'Content-Type: application/json' -d { "startDate": "2020-08-21", "endDate": "2020-08-22", "downloadAfterDate": "2020-08-21", "downloadTimeWindowList": [ { "startTime": 3, "endTime": 4 }, { "startTime": 5, "endTime": 6 } ], "installAfterDate": "2020-08-21", "installTimeWindowList": [ { "startTime": 5, "endTime": 6 }, { "startTime": 6, "endTime": 7 } ] } ``` ## Success Responses **Status 200** | Parameter Name | Data Type | Description | |:----------------|:-----------|:-------------| | id | string | Upgrade identifier. | | accountName | string | The account name. | | campaignName | string | The campaign name. | | softwareName | string | The name of the software to which you are upgrading. | | distributionType | string | Valid values include:<ul><li> LWM2M </li><li> OMA </li><li> HTTP </li></ul> | | make | string | Applicable make. | | model | string | Applicable model. | | softwareFrom | string | The name of the old software on the device. | | softwareTo | string | The name of the new software to which you are upgrading. | | startDate | string($date) | Campaign start date. | | endDate | string($date) | Campaign end date. | | downloadAfterDate | string($date) | Specifies the starting date the client should download the package. If null, client downloads as soon as possible. | | downloadTimeWindowList | Array of startTime and endTime objects | List of allowed download time windows. | | downloadTimeWindowList.startTime <br> *required* | integer | Start hour in range [0-23], current hour >= startTime. When the current hour falls between the startTime and the endTime, it starts. | | downloadTimeWindowList.endTime <br> *required* | integer | End hour in range [1-24], current hour < endTime. | | installAfterDate | string($date) | The date after which you install the package. If null, installs as soon as possible. | | installTimeWindowList | Array of startTime and endTime objects | List of allowed install time windows. | | installTimeWindowList.startTime | integer | Start hour in range [0-23], startTime >= current hour. | | installTimeWindowList.endTime | integer | End hour in range [1-24], endTime < current hour. | | status | string | Software upgrade status. | ## Example Success Response ```json { "id": "60b5d639-ccdc-4db8-8824-069bd94c95bf", "accountName": "0402196254-00001", "campaignName": "FOTA_Verizon_Upgrade", "softwareName": "FOTA_Verizon_Model-A_02To03_HF", "distributionType": "HTTP", "make": "Verizon", "model": "Model-A", "softwareFrom": "FOTA_Verizon_Model-A_00To01_HF", "softwareTo": "FOTA_Verizon_Model-A_02To03_HF", "startDate": "2020-08-21", "endDate": "2020-08-22", "downloadAfterDate": "2020-08-21", "downloadTimeWindowList": [ { "startTime": 3, "endTime": 4 }, { "startTime": 5, "endTime": 6 } ], "installAfterDate": "2020-08-21", "installTimeWindowList": [ { "startTime": 5, "endTime": 6 }, { "startTime": 6, "endTime": 7 } ], "status": "RequestPending" } ``` ## 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.