People
Retrieve people and user records.
| Field | Data Type |
|---|---|
| PeopleID | String |
| UserType | String |
| FirstName | String |
| LastName | String |
| EmailAddress | String |
| TimeZone | String |
| MaintenanceLaborMarkup | Decimal |
| MaintenanceMaterialMarkup | Decimal |
| ContractorLaborMarkup | Decimal |
| ContractorMaterialMarkup | Decimal |
| Birthday | DateTime |
| Title | String |
| PRApproval | String |
| Department | String |
| CostCenter | String |
| Shift | String |
| ReportsTo | String |
| Notes | String |
Key: PeopleID
Required property: PeopleID
Endpoints
GET
URL: https://{site}.mvpplant.com/ODataApi/v1/People
Description: Retrieve people and user records.
OData Query Examples
-
Select specific fields:
https://{site}.mvpplant.com/ODataApi/v1/People?$select=PeopleID,FirstName,LastName,EmailAddress -
Filter by department:
https://{site}.mvpplant.com/ODataApi/v1/People?$filter=Department eq 'Maintenance' -
Sort by last name:
https://{site}.mvpplant.com/ODataApi/v1/People?$orderby=LastName,FirstName -
Return the first 10 records:
https://{site}.mvpplant.com/ODataApi/v1/People?$top=10
Notes
- This endpoint is read-only in the current documentation.
- Use
PeopleIDas the key field for people records.
