Enterprise Currency
Retrieve and manage enterprise currency records
| Field | Data Type | POST | PATCH |
|---|---|---|---|
| Name | String | X | X |
| Exchange Rate | Decimal | X | X |
| Symbol | String | X | X |
| IsActive | Boolean | X | X |
| CreatedBy | String | ||
| DateCreated | DateTime | ||
| EditedBy | String | ||
| DateEdited | DateTime |
Key: Name
Required property: Name
Endpoints
GET
URL: https://{site}.mvpplant.com/ODataApi/v1/EnterpriseCurrency
Description: Retrieve enterprise currency records
POST
URL: https://{site}.mvpplant.com/ODataApi/v1/EnterpriseCurrency
Description: Create an enterprise currency record
Body: Send property values marked in the POST column.
PATCH
URL: https://{site}.mvpplant.com/ODataApi/v1/EnterpriseCurrency('Name')
Description: Update an existing enterprise currency record
Body: Send property values marked in the PATCH column.
OData Query Examples
-
Select specific fields:
https://{site}.mvpplant.com/ODataApi/v1/EnterpriseCurrency?$select=Name,ExchangeRate,Symbol -
Filter active records:
https://{site}.mvpplant.com/ODataApi/v1/EntepriseCurrency?$filter=IsActive eq true -
Sort by Name:
https://{site}.mvpplant.com/ODataApi/v1/EnterpriseCurrency?$orderby=Name -
Return the first 10 records:
https://{site}.mvpplant.com/ODataApi/v1/EnterpriseCurrency?$top=10
Notes
CreatedBy,DateCreated,EditedBy, andDateEditedare system-generated fields.- Use
Nameas the key field for enterprise part records.
