- Overview
- Account Settings
- Assets
- Connectors Framework
- Customer Portal
- Customers
- Dashboards
- Devices
- Dispatching
- Forms
- Inventory
- Invoices & Billing
- Locations
- Payments
- Parts
- Projects
- Quotes
- Recurrent Routes
- Recurrent Services
- Reports
- Sales Orders
- Schedule
- Services
- Tasks
- Text Messaging
- Time Tracking
- Users
- Work Orders
Overview
Adding training services to a user profile.
Adding training services to a user profile.
URL Format
https://{domain}.mobiwork.com/api/rest/{clientId}/{versionNumber}/user/{userId}/trainingService/add.html?token=XXXXXXXX
https://{domain}.mobiwork.com/api/rest/{clientId}/{versionNumber}/user/{userId}/trainingService/add.html?token=XXXXXXXX
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 |
userId optional |
If provided, this User ID will be taken as a logged in user |
Body
<request> <maintenanceServiceTypeId></maintenanceServiceTypeId> <intervalDays></intervalDays> <warningDayCount></warningDayCount> <tardyDayCount></tardyDayCount> </request> |
Response
<?xml version="1.0" encoding="UTF-8" ?> <response version="5.0.176" statusCode="1"> <Result> <trainingService> <name>Training Type 1</name> <frequencyType>DAILY</frequencyType> <frequency>1</frequency> <lastMaintenanceDate>2021/10/14</lastMaintenanceDate> <status>red</status> <id>2</id> </trainingService> </Result> </response> |