WebAPI - Creating a monitoring value

WebAPI - Creating a monitoring value

This method allows to create a monitoring value in a simplified manner.

The method to be used when creating a monitoring value:

POST url/api/mytenant/myorganization/assetmanagement/monitoringvalues

Json example for creating a monitoring value:

1.     {

        "monitoringValueKey""000001",

        "value"911.000000,

        "date""2021-07-21T12:50:21+01:00",

        "remarks"null,

        "monitoring""0001",

        "assetType"2,

        "equipment""ATC01",

        "location"null,

        "tool"null,

        "workOrder""OT00008",

        "company""DEMO"

    }

This method allows to create a monitoring value according to the parameters filled in:
MonitoringValueKey: The monitoring value key. If this parameter is not filled in, it assumes the defined sequential number. 
Value: The monitoring value you wish to record. This field is mandatory.
Date: The monitoring value record date. This field is mandatory.
Remarks: Remarks.
Monitoring: The key of the monitoring whose value you wish to record. This field is mandatory.
AssetType: Asset type. (1- Location. 2- Equipment. 3- Tool.) Mandatory field.
Equipment: The equipment key..
Location: The location's key.
Tool: The tool's key.
WorkOrder: The key of the work order whose monitoring value you wish to record.
Company: The company's key.
When this method is executed successfully, it returns HttpStatusCode.OK.

    • Related Articles

    • WebAPI - Creating a Monitoring

      This method allows to create a monitoring in a simplified manner. The method to be used when creating a monitoring: POST url/api/mytenant/myorganization/assetmanagementcore/monitorings Json example for creating a monitoring:  { ...
    • WebAPI - Creating a warehouse

      This method allows to create a warehouse in a simplified manner. The method to be used when creating a warehouse: POST url/api/mytenant/myorganization/inventorycore/warehouses Json example for creating a warehouse: 1. { "warehouseKey": "W2", ...
    • WebAPI - Creating a request

      This method allows to create a request in a simplified manner. The method to be used when creating a request: POST url/api/mytenant/myorganization/Requests/requests Json example for creating a request: { "requestKey": "00001", "description": "Vidro ...
    • WebAPI - Creating a tool

      This method allows to create a tool in a simplified manner. The method to be used when creating a tool is: POST url/api/mytenant/myorganization/assetmanagementcore/equipmentItems Json example for creating a tool: 1.     {     "equipmentKey": "PCR", ...
    • WebAPI - Creating an equipment

      This method allows to create an equipment in a simplified manner. The method to be used when creating an equipment: POST url/api/mytenant/myorganization/assetmanagementcore/equipmentItems Json example for creating an equipment: 1.       { ...