- 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 Purchase Request list based on provided criteria
Retrieve Purchase Request list based on provided criteria
URL Format
https://{domain}.mobiwork.com/api/rest/{clientId}/{versionNumber}/purchaseRequest/list.html?token=XXXXXXXX&userId={userId}
https://{domain}.mobiwork.com/api/rest/{clientId}/{versionNumber}/purchaseRequest/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 |
Body
<createdDateFrom>01/01/2019 00:00:01</createdDateFrom> <createdDateTo>12/31/2021 23:59:59</createdDateTo> <integrationStatus></integrationStatus> |
Returns
<?xml version="1.0" encoding="UTF-8" ?> <response version="6.0.3" statusCode="1"> <purchaseRequestList> <totalAvailableCount>3</totalAvailableCount> <count>4</count> <purchaseRequest> <createdBy>null</createdBy> <externalId></externalId> <purchaseRequestId>13</purchaseRequestId> </purchaseRequest> <purchaseRequest> <createdBy>null</createdBy> <externalId></externalId> <purchaseRequestId>12</purchaseRequestId> </purchaseRequest> <purchaseRequest> <createdBy>null</createdBy> <externalId></externalId> <purchaseRequestId>11</purchaseRequestId> </purchaseRequest> </purchaseRequestList> </response> |