Overview
Updates a Recurrent Service
Updates a Recurrent Service
URL Format
https://{domain}.mobiwork.com/api/rest/{clientId}/{versionNumber}/recurrentService/{recurrentServiceId}/edit.html?token=XXXXXXXX&userId={userId}
https://{domain}.mobiwork.com/api/rest/{clientId}/{versionNumber}/recurrentService/{recurrentServiceId}/edit.html?token=XXXXXXXX&userId={userId}
Arguments
| clientId required |
MobiWork assigned unique ID of the company |
| versionNumber required |
Version number of MobiWork API SDK release. Current version is: 10.0.78 |
| token required |
Part of URL as a request parameter and is required in every call to verify access to API calls |
| recurrentServiceId optional |
The identifier of the recurrent service to be deleted |
| userId required |
If provided, this User ID will be taken as a logged in user. If not provided we use an active global administrator ID |
Return
Returns a Recurrent Service Object if recurrent service update is successful, otherwise errors will be returned
Returns a Recurrent Service Object if recurrent service update is successful, otherwise errors will be returned
Curl Example
| HTTP Method: | POST |
| Request: |
curl -k -X POST -H
"https://www.mobiwork.com/api/rest/12014/10.0.78/recurrentService/501266/edit.html?token=COJL8X2FKSLMMRTYCH2B"
-data '<request> <recurrentService> <customerId>3178692</customerId> <description>Test Recurrent Service Updated</description> <workOrderTypeId>25122</workOrderTypeId> <warnDays>5</warnDays> <tardyDays>1</tardyDays> </recurrentService> </request>' |
| Response: |
<?xml encoding="UTF-8" ?> <response version="10.0.78" statusCode="1"> <recurrentService> <recurrentServiceId>501266</recurrentServiceId> <customerId>3178692</customerId> <customer>customer2</customer> <locationId>4373022</locationId> <location>Street, City State Zip</location> <description>Test Recurrent Service Updated</description> <frequencyTypeId>15</frequencyTypeId> <frequencyType>EVERY_5_WEEKS</frequencyType> <workOrderTypeId>25122</workOrderTypeId> <workOrderType>testworkordertype </workOrderTypeId> <intervalDays>0</intervalDays> <warnDays>5</warnDays> <tardyDays>1</tardyDays> <lastServiceDate>2020/12/01</lastServiceDate> <nextServiceDate>2021/01/05</nextServiceDate> <assignedTo></assignedTo> <assetList></assetList> <serviceList></serviceList> </recurrentService> </response> |