- 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
Retrieve Form List of the client
Retrieve Form List of the client
URL Format
https://{domain}.mobiwork.com/api/rest/{clientId}/{versionNumber}/mobiForm/list.html?token=XXXXXXXX&userId={userId}
https://{domain}.mobiwork.com/api/rest/{clientId}/{versionNumber}/mobiForm/list.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 |
userId optional |
If provided, this User ID will be taken as a logged in user |
Filter or Search Criteria
formApiName | By the name of the form |
status | By the status of the form |
createdFromDate | By the creation date of the from |
createdToDate | By the ending date of the form |
createdByUserId | By the form's creator Id. |
Return
Returns a list of form Object(s) if valid arguments and search criteria are provided. If no search criteria is provided the list of a maximum 200 Form will be returned. Returns an error if not a valid request
Returns a list of form Object(s) if valid arguments and search criteria are provided. If no search criteria is provided the list of a maximum 200 Form will be returned. Returns an error if not a valid request
Request Body XSD
Response Body XSD
Curl Example
HTTP Method: | POST |
Request: |
curl -k -X POST -H
"https://www.mobiwork.com/api/rest/12014/10.0.78/mobiForm/list.html?token=COJL8X2FKSLMMRTYCH2B"
--header 'content-type: application/xml'
--data '<mobiForm> <createdByUserId>0</createdByUserId> <createdFromDate>2019/06/20</createdFromDate> <createdToDate>2019/06/20</createdToDate> <formApiName>TestForm</formApiName> <status>CREATED</status> </mobiForm>' |
Response: |
<?xml encoding="UTF-8" ?> <response version="10.0.78" statusCode="1"> <mobiFormList> <totalAvailableCount>55</totalAvailableCount> <count>55</count> <mobiForm> <filledFormId>5</filledFormId> <name>TestForm</name> <apiName>TestForm</apiName> <pdfUrl></pdfUrl> <status>CREATED</status> <createdDate>2019/06/20</createdDate> <createdByUserName></createdByUserName> <createdBy>0</createdBy> <formFields> <formField><fieldType>6</fieldType><apiName>selectcolor</apiName><index>0</index><name>select color</name><value>blue</value></formField> <formField><fieldType>1</fieldType><apiName>name</apiName><index>0</index><name>name</name><value>piet</value></formField> <formField><fieldType>2</fieldType><apiName>Age</apiName><index>0</index><name>Age</name><value>99</value></formField> </formFields> </mobiForm> </mobiFormList> <response> |