Valuekeep Developers - Web API Reference

Work | Operational Report

Service to manage entities of type 'OperationalReport'.

Overview


URL api/{tenantKey}/{orgKey}/maintenance/operationalReports
Methods Supported GET, POST, PUT, DELETE

All Operations

This service includes the following operations:

All Resources

This service uses the following resources:

GET Operations

GET OperationalReports (odata)

Returns a page of the list of all the entity records available.

The following elements are optional:

opts (ODataQueryOptions) OData query option.

Response:

When successful, the response body contains the list of records available. See OperationalReportResource.

Response status codes:

200 OK. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.

Resource URL:

GET /maintenance/operationalReports/odata

GET OperationalReport by identifier

Returns the entity record that matches the specified identifier.

The following elements are required:

id (string) The record identifier.

Response:

When successful, the response body contains the entity record. See OperationalReportResource.

Response status codes:

200 OK. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.
404 NotFound. The specified record does not exist.

Resource URL:

GET /maintenance/operationalReports/{id}

GET OperationalReport by key

Returns the entity record that matches the specified key.

The following elements are required:

operationalReportKey (string) Operational Report.

Response:

When successful, the response body contains the entity record. See OperationalReportResource.

Response status codes:

200 OK. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.
404 NotFound. The specified record does not exist.

Resource URL:

GET /maintenance/operationalReports/{operationalReportKey}

GET Print OperationalReport by identifier

Prints the specified entity record.

The following elements are required:

id (string) The record identifier.

The following elements are optional:

template (string) The report template that should be used. This is a query string parameter.

Response:

When successful, the response body contains a stream with the printed file.

Response status codes:

200 OK. The operation was completed successfully.
404 NotFound. The specified record does not exist.

Resource URL:

GET /maintenance/operationalReports/{id}/print?template={template}

GET Print OperationalReport by identifier (asynchronously)

Prints the specified entity record asynchronously.

The following elements are required:

id (string) The record identifier.

The following elements are optional:

template (string) The report template that should be used. This is a query string parameter.

Response:

When successful, the response Location header contains an URL to download the printed file.

Response status codes:

202 Accepted. The operation was accepted. The response Location header contains the address to obtain the printed file when it's ready.
400 BadRequest. The request parameters are invalid.

Resource URL:

GET /maintenance/operationalReports/{id}/printAsync?template={template}

GET Print OperationalReport by key

Prints the specified entity record.

The following elements are required:

operationalReportKey (string) Operational Report.

The following elements are optional:

template (string) The report template that should be used. This is a query string parameter.

Response:

When successful, the response body contains a stream with the printed file.

Response status codes:

200 OK. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.
404 NotFound. The specified record does not exist.

Resource URL:

GET /maintenance/operationalReports/{operationalReportKey}/print

GET Print OperationalReport by key (asynchronously)

Prints the specified entity record asynchronously.

The following elements are required:

operationalReportKey (string) Operational Report.

The following elements are optional:

template (string) The report template that should be used. This is a query string parameter.

Response:

When successful, the response Location header contains an URL to download the printed file.

Response status codes:

202 Accepted. The operation was accepted. The response Location header contains the address to obtain the printed file when it's ready.
400 BadRequest. The request parameters are invalid.

Resource URL:

GET /maintenance/operationalReports/{operationalReportKey}/printAsync

GET Original Print OperationalReport by identifier

Prints the specified entity record.

The following elements are required:

id (string) The record identifier.

The following elements are optional:

template (string) The report template that should be used. This is a query string parameter.

Response:

When successful, the response body contains a stream with the printed file.

Response status codes:

200 OK. The operation was completed successfully.
404 NotFound. The specified record does not exist.

Resource URL:

GET /maintenance/operationalReports/{id}/printOriginal?template={template}

GET Original Print OperationalReport by identifier (asynchronously)

Prints the specified entity record asynchronously.

The following elements are required:

id (string) The record identifier.

The following elements are optional:

template (string) The report template that should be used. This is a query string parameter.

Response:

When successful, the response Location header contains an URL to download the printed file.

Response status codes:

202 Accepted. The operation was accepted. The response Location header contains the address to obtain the printed file when it's ready.
400 BadRequest. The request parameters are invalid.

Resource URL:

GET /maintenance/operationalReports/{id}/printOriginalAsync?template={template}

GET Original Print OperationalReport by key

Prints the specified entity record.

The following elements are required:

operationalReportKey (string) Operational Report.

The following elements are optional:

template (string) The report template that should be used. This is a query string parameter.

Response:

When successful, the response body contains a stream with the printed file.

Response status codes:

200 OK. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.
404 NotFound. The specified record does not exist.

Resource URL:

GET /maintenance/operationalReports/{operationalReportKey}/printOriginal

GET Original Print OperationalReport by key (asynchronously)

Prints the specified entity record asynchronously.

The following elements are required:

operationalReportKey (string) Operational Report.

The following elements are optional:

template (string) The report template that should be used. This is a query string parameter.

Response:

When successful, the response Location header contains an URL to download the printed file.

Response status codes:

202 Accepted. The operation was accepted. The response Location header contains the address to obtain the printed file when it's ready.
400 BadRequest. The request parameters are invalid.

Resource URL:

GET /maintenance/operationalReports/{operationalReportKey}/printOriginalAsync

POST Operations

POST OperationalReports

Creates a new entity record.

The following elements are required:

operationalReportResource (ApiOperationalReportResource) The request body should contain the entity record that should be created.
See ApiOperationalReportResource.

The following elements are optional:

customAttributes (JSON Document) A key-value pair in JSON format that represents the extensibility custom attributes for this entity.
The key should be the custom attribute name prefixed with "custom_", e.g. "custom_attributeName".
While the "customAttributes" element is optional, please notice that specific custom attributes might be marked as required.

Response:

When successful, the response body contains the new entity record identifier. The resource header location property contains the URL for the new entity record. See ApiOperationalReportResource.

Response status codes:

201 Created. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.

Resource URL:

POST /maintenance/operationalReports

POST Operational Report Transition

Inserts a new 'Operational Report Transition' in the 'Operational Report'.

The following elements are required:

operationalReportKey (string) Operational Report.
value (ApiOperationalReportOperationalReportTransitionsResource) The ApiOperationalReportOperationalReportTransitionsResource instance.
See ApiOperationalReportOperationalReportTransitionsResource.

The following elements are optional:

customAttributes (JSON Document) A key-value pair in JSON format that represents the extensibility custom attributes for this entity.
The key should be the custom attribute name prefixed with "custom_", e.g. "custom_attributeName".
While the "customAttributes" element is optional, please notice that specific custom attributes might be marked as required.

Response:

When successful, the response body is empty.

Response status codes:

204 NoContent. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.

Resource URL:

POST /maintenance/operationalReports/{operationalReportKey}/operationalReportTransitions

POST Operational Report Verification

Inserts a new 'Operational Report Verification' in the 'Operational Report'.

The following elements are required:

operationalReportKey (string) Operational Report.
value (ApiOperationalReportOperationalReportVerificationsResource) The ApiOperationalReportOperationalReportVerificationsResource instance.
See ApiOperationalReportOperationalReportVerificationsResource.

The following elements are optional:

customAttributes (JSON Document) A key-value pair in JSON format that represents the extensibility custom attributes for this entity.
The key should be the custom attribute name prefixed with "custom_", e.g. "custom_attributeName".
While the "customAttributes" element is optional, please notice that specific custom attributes might be marked as required.

Response:

When successful, the response body is empty.

Response status codes:

204 NoContent. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.

Resource URL:

POST /maintenance/operationalReports/{operationalReportKey}/operationalReportVerifications

POST Operational Report Labor

Inserts a new 'Operational Report Labor' in the 'Operational Report'.

The following elements are required:

operationalReportKey (string) Operational Report.
value (ApiOperationalReportOperationalReportLaborsResource) The ApiOperationalReportOperationalReportLaborsResource instance.
See ApiOperationalReportOperationalReportLaborsResource.

The following elements are optional:

customAttributes (JSON Document) A key-value pair in JSON format that represents the extensibility custom attributes for this entity.
The key should be the custom attribute name prefixed with "custom_", e.g. "custom_attributeName".
While the "customAttributes" element is optional, please notice that specific custom attributes might be marked as required.

Response:

When successful, the response body is empty.

Response status codes:

204 NoContent. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.

Resource URL:

POST /maintenance/operationalReports/{operationalReportKey}/operationalReportLabors

POST Operational Report Consumption

Inserts a new 'Operational Report Consumption' in the 'Operational Report'.

The following elements are required:

operationalReportKey (string) Operational Report.
value (ApiOperationalReportOperationalReportConsumptionsResource) The ApiOperationalReportOperationalReportConsumptionsResource instance.
See ApiOperationalReportOperationalReportConsumptionsResource.

The following elements are optional:

customAttributes (JSON Document) A key-value pair in JSON format that represents the extensibility custom attributes for this entity.
The key should be the custom attribute name prefixed with "custom_", e.g. "custom_attributeName".
While the "customAttributes" element is optional, please notice that specific custom attributes might be marked as required.

Response:

When successful, the response body is empty.

Response status codes:

204 NoContent. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.

Resource URL:

POST /maintenance/operationalReports/{operationalReportKey}/operationalReportConsumptions

POST Operational Report Misc Cost

Inserts a new 'Operational Report Misc Cost' in the 'Operational Report'.

The following elements are required:

operationalReportKey (string) Operational Report.
value (ApiOperationalReportOperationalReportMiscCostsResource) The ApiOperationalReportOperationalReportMiscCostsResource instance.
See ApiOperationalReportOperationalReportMiscCostsResource.

The following elements are optional:

customAttributes (JSON Document) A key-value pair in JSON format that represents the extensibility custom attributes for this entity.
The key should be the custom attribute name prefixed with "custom_", e.g. "custom_attributeName".
While the "customAttributes" element is optional, please notice that specific custom attributes might be marked as required.

Response:

When successful, the response body is empty.

Response status codes:

204 NoContent. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.

Resource URL:

POST /maintenance/operationalReports/{operationalReportKey}/operationalReportMiscCosts

POST Operational Report Request

Inserts a new 'Operational Report Request' in the 'Operational Report'.

The following elements are required:

operationalReportKey (string) Operational Report.
value (ApiOperationalReportOperationalReportRequestsResource) The ApiOperationalReportOperationalReportRequestsResource instance.
See ApiOperationalReportOperationalReportRequestsResource.

The following elements are optional:

customAttributes (JSON Document) A key-value pair in JSON format that represents the extensibility custom attributes for this entity.
The key should be the custom attribute name prefixed with "custom_", e.g. "custom_attributeName".
While the "customAttributes" element is optional, please notice that specific custom attributes might be marked as required.

Response:

When successful, the response body is empty.

Response status codes:

204 NoContent. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.

Resource URL:

POST /maintenance/operationalReports/{operationalReportKey}/operationalReportRequests

PUT Operations

PUT Set Asset OperationalReport

Updates the value of attribute 'Asset' in the specified entity record.

The following elements are required:

operationalReportKey (string) Operational Report.
value (string) The request body should contain the new value for the attribute.

Response:

When successful, the response body is empty.

Response status codes:

200 OK. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.

Resource URL:

PUT /maintenance/operationalReports/{operationalReportKey}/asset

PUT Set AssetType OperationalReport

Updates the value of attribute 'AssetType' in the specified entity record.

The following elements are required:

operationalReportKey (string) Operational Report.
value (string) The request body should contain the new value for the attribute.

Response:

When successful, the response body is empty.

Response status codes:

200 OK. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.

Resource URL:

PUT /maintenance/operationalReports/{operationalReportKey}/assetType

PUT Set Company OperationalReport

Updates the value of attribute 'Company' in the specified entity record.

The following elements are required:

operationalReportKey (string) Operational Report.
value (string) The request body should contain the new value for the attribute.

Response:

When successful, the response body is empty.

Response status codes:

200 OK. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.

Resource URL:

PUT /maintenance/operationalReports/{operationalReportKey}/company

PUT Set ConsumptionAsset OperationalReportConsumption

Updates the value of attribute 'ConsumptionAsset' in the specified entity record.

The following elements are required:

operationalReportKey (string) Operational Report.
lineId (string) The detail identifier.
value (string) The request body should contain the new value for the attribute.

Response:

When successful, the response body is empty.

Response status codes:

200 OK. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.

Resource URL:

PUT /maintenance/operationalReports/{operationalReportKey}/operationalReportConsumptions/{lineId}/consumptionAsset

PUT Set ConsumptionDate OperationalReportConsumption

Updates the value of attribute 'ConsumptionDate' in the specified entity record.

The following elements are required:

operationalReportKey (string) Operational Report.
lineId (string) The detail identifier.
value (DateTimeOffset) The request body should contain the new value for the attribute.

Response:

When successful, the response body is empty.

Response status codes:

200 OK. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.

Resource URL:

PUT /maintenance/operationalReports/{operationalReportKey}/operationalReportConsumptions/{lineId}/consumptionDate

PUT Set ConsumptionPart OperationalReportConsumption

Updates the value of attribute 'ConsumptionPart' in the specified entity record.

The following elements are required:

operationalReportKey (string) Operational Report.
lineId (string) The detail identifier.
value (string) The request body should contain the new value for the attribute.

Response:

When successful, the response body is empty.

Response status codes:

200 OK. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.

Resource URL:

PUT /maintenance/operationalReports/{operationalReportKey}/operationalReportConsumptions/{lineId}/consumptionPart

PUT Set ConsumptionQuantity OperationalReportConsumption

Updates the value of attribute 'ConsumptionQuantity' in the specified entity record.

The following elements are required:

operationalReportKey (string) Operational Report.
lineId (string) The detail identifier.
value (string) The request body should contain the new value for the attribute.

Response:

When successful, the response body is empty.

Response status codes:

200 OK. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.

Resource URL:

PUT /maintenance/operationalReports/{operationalReportKey}/operationalReportConsumptions/{lineId}/consumptionQuantity

PUT Set ConsumptionWarehouse OperationalReportConsumption

Updates the value of attribute 'ConsumptionWarehouse' in the specified entity record.

The following elements are required:

operationalReportKey (string) Operational Report.
lineId (string) The detail identifier.
value (string) The request body should contain the new value for the attribute.

Response:

When successful, the response body is empty.

Response status codes:

200 OK. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.

Resource URL:

PUT /maintenance/operationalReports/{operationalReportKey}/operationalReportConsumptions/{lineId}/consumptionWarehouse

PUT Set Date OperationalReport

Updates the value of attribute 'Date' in the specified entity record.

The following elements are required:

operationalReportKey (string) Operational Report.
value (DateTimeOffset) The request body should contain the new value for the attribute.

Response:

When successful, the response body is empty.

Response status codes:

200 OK. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.

Resource URL:

PUT /maintenance/operationalReports/{operationalReportKey}/date

PUT Set Description OperationalReportRequest

Updates the value of attribute 'Description' in the specified entity record.

The following elements are required:

operationalReportKey (string) Operational Report.
lineId (string) The detail identifier.
value (string) The request body should contain the new value for the attribute.

Response:

When successful, the response body is empty.

Response status codes:

200 OK. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.

Resource URL:

PUT /maintenance/operationalReports/{operationalReportKey}/operationalReportRequests/{lineId}/description

PUT Set Details OperationalReport

Updates the value of attribute 'Details' in the specified entity record.

The following elements are required:

operationalReportKey (string) Operational Report.
value (string) The request body should contain the new value for the attribute.

Response:

When successful, the response body is empty.

Response status codes:

200 OK. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.

Resource URL:

PUT /maintenance/operationalReports/{operationalReportKey}/details

PUT Set IsActive OperationalReport

Updates the value of attribute 'IsActive' in the specified entity record.

The following elements are required:

operationalReportKey (string) Operational Report.
value (bool) The request body should contain the new value for the attribute.

Response:

When successful, the response body is empty.

Response status codes:

200 OK. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.
404 NotFound. The specified record does not exist.

Resource URL:

PUT /maintenance/operationalReports/{operationalReportKey}/isActive

PUT Set IsPrinted OperationalReport

Updates the value of attribute 'IsPrinted' in the specified entity record.

The following elements are required:

operationalReportKey (string) Operational Report.
value (bool) The request body should contain the new value for the attribute.

Response:

When successful, the response body is empty.

Response status codes:

200 OK. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.

Resource URL:

PUT /maintenance/operationalReports/{operationalReportKey}/isPrinted

PUT Set IsReprinted OperationalReport

Updates the value of attribute 'IsReprinted' in the specified entity record.

The following elements are required:

operationalReportKey (string) Operational Report.
value (bool) The request body should contain the new value for the attribute.

Response:

When successful, the response body is empty.

Response status codes:

200 OK. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.

Resource URL:

PUT /maintenance/operationalReports/{operationalReportKey}/isReprinted

PUT Set IsSigned OperationalReport

Updates the value of attribute 'IsSigned' in the specified entity record.

The following elements are required:

operationalReportKey (string) Operational Report.
value (bool) The request body should contain the new value for the attribute.

Response:

When successful, the response body is empty.

Response status codes:

200 OK. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.

Resource URL:

PUT /maintenance/operationalReports/{operationalReportKey}/isSigned

PUT Set LaborAsset OperationalReportLabor

Updates the value of attribute 'LaborAsset' in the specified entity record.

The following elements are required:

operationalReportKey (string) Operational Report.
lineId (string) The detail identifier.
value (string) The request body should contain the new value for the attribute.

Response:

When successful, the response body is empty.

Response status codes:

200 OK. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.

Resource URL:

PUT /maintenance/operationalReports/{operationalReportKey}/operationalReportLabors/{lineId}/laborAsset

PUT Set LaborDate OperationalReportLabor

Updates the value of attribute 'LaborDate' in the specified entity record.

The following elements are required:

operationalReportKey (string) Operational Report.
lineId (string) The detail identifier.
value (DateTimeOffset) The request body should contain the new value for the attribute.

Response:

When successful, the response body is empty.

Response status codes:

200 OK. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.

Resource URL:

PUT /maintenance/operationalReports/{operationalReportKey}/operationalReportLabors/{lineId}/laborDate

PUT Set LaborEmployee OperationalReportLabor

Updates the value of attribute 'LaborEmployee' in the specified entity record.

The following elements are required:

operationalReportKey (string) Operational Report.
lineId (string) The detail identifier.
value (string) The request body should contain the new value for the attribute.

Response:

When successful, the response body is empty.

Response status codes:

200 OK. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.

Resource URL:

PUT /maintenance/operationalReports/{operationalReportKey}/operationalReportLabors/{lineId}/laborEmployee

PUT Set LaborEndDate OperationalReportLabor

Updates the value of attribute 'LaborEndDate' in the specified entity record.

The following elements are required:

operationalReportKey (string) Operational Report.
lineId (string) The detail identifier.
value (DateTimeOffset) The request body should contain the new value for the attribute.

Response:

When successful, the response body is empty.

Response status codes:

200 OK. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.

Resource URL:

PUT /maintenance/operationalReports/{operationalReportKey}/operationalReportLabors/{lineId}/laborEndDate

PUT Set LaborHours OperationalReportLabor

Updates the value of attribute 'LaborHours' in the specified entity record.

The following elements are required:

operationalReportKey (string) Operational Report.
lineId (string) The detail identifier.
value (string) The request body should contain the new value for the attribute.

Response:

When successful, the response body is empty.

Response status codes:

200 OK. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.

Resource URL:

PUT /maintenance/operationalReports/{operationalReportKey}/operationalReportLabors/{lineId}/laborHours

PUT Set LaborSpecialty OperationalReportLabor

Updates the value of attribute 'LaborSpecialty' in the specified entity record.

The following elements are required:

operationalReportKey (string) Operational Report.
lineId (string) The detail identifier.
value (string) The request body should contain the new value for the attribute.

Response:

When successful, the response body is empty.

Response status codes:

200 OK. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.

Resource URL:

PUT /maintenance/operationalReports/{operationalReportKey}/operationalReportLabors/{lineId}/laborSpecialty

PUT Set LaborStartDate OperationalReportLabor

Updates the value of attribute 'LaborStartDate' in the specified entity record.

The following elements are required:

operationalReportKey (string) Operational Report.
lineId (string) The detail identifier.
value (DateTimeOffset) The request body should contain the new value for the attribute.

Response:

When successful, the response body is empty.

Response status codes:

200 OK. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.

Resource URL:

PUT /maintenance/operationalReports/{operationalReportKey}/operationalReportLabors/{lineId}/laborStartDate

PUT Set MiscCostAsset OperationalReportMiscCost

Updates the value of attribute 'MiscCostAsset' in the specified entity record.

The following elements are required:

operationalReportKey (string) Operational Report.
lineId (string) The detail identifier.
value (string) The request body should contain the new value for the attribute.

Response:

When successful, the response body is empty.

Response status codes:

200 OK. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.

Resource URL:

PUT /maintenance/operationalReports/{operationalReportKey}/operationalReportMiscCosts/{lineId}/miscCostAsset

PUT Set MiscCostDate OperationalReportMiscCost

Updates the value of attribute 'MiscCostDate' in the specified entity record.

The following elements are required:

operationalReportKey (string) Operational Report.
lineId (string) The detail identifier.
value (DateTimeOffset) The request body should contain the new value for the attribute.

Response:

When successful, the response body is empty.

Response status codes:

200 OK. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.

Resource URL:

PUT /maintenance/operationalReports/{operationalReportKey}/operationalReportMiscCosts/{lineId}/miscCostDate

PUT Set MiscCostEmployee OperationalReportMiscCost

Updates the value of attribute 'MiscCostEmployee' in the specified entity record.

The following elements are required:

operationalReportKey (string) Operational Report.
lineId (string) The detail identifier.
value (string) The request body should contain the new value for the attribute.

Response:

When successful, the response body is empty.

Response status codes:

200 OK. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.

Resource URL:

PUT /maintenance/operationalReports/{operationalReportKey}/operationalReportMiscCosts/{lineId}/miscCostEmployee

PUT Set MiscCostMiscCost OperationalReportMiscCost

Updates the value of attribute 'MiscCostMiscCost' in the specified entity record.

The following elements are required:

operationalReportKey (string) Operational Report.
lineId (string) The detail identifier.
value (string) The request body should contain the new value for the attribute.

Response:

When successful, the response body is empty.

Response status codes:

200 OK. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.

Resource URL:

PUT /maintenance/operationalReports/{operationalReportKey}/operationalReportMiscCosts/{lineId}/miscCostMiscCost

PUT Set MiscCostQuantity OperationalReportMiscCost

Updates the value of attribute 'MiscCostQuantity' in the specified entity record.

The following elements are required:

operationalReportKey (string) Operational Report.
lineId (string) The detail identifier.
value (string) The request body should contain the new value for the attribute.

Response:

When successful, the response body is empty.

Response status codes:

200 OK. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.

Resource URL:

PUT /maintenance/operationalReports/{operationalReportKey}/operationalReportMiscCosts/{lineId}/miscCostQuantity

PUT Set MiscCostValue OperationalReportMiscCost

Updates the value of attribute 'MiscCostValue' in the specified entity record.

The following elements are required:

operationalReportKey (string) Operational Report.
lineId (string) The detail identifier.
value (string) The request body should contain the new value for the attribute.

Response:

When successful, the response body is empty.

Response status codes:

200 OK. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.

Resource URL:

PUT /maintenance/operationalReports/{operationalReportKey}/operationalReportMiscCosts/{lineId}/miscCostValue

PUT Set MoreDetails OperationalReport

Updates the value of attribute 'MoreDetails' in the specified entity record.

The following elements are required:

operationalReportKey (string) Operational Report.
value (string) The request body should contain the new value for the attribute.

Response:

When successful, the response body is empty.

Response status codes:

200 OK. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.

Resource URL:

PUT /maintenance/operationalReports/{operationalReportKey}/moreDetails

PUT Set OperationalReportKey OperationalReport

Updates the value of attribute 'OperationalReportKey' in the specified entity record.

The following elements are required:

operationalReportKey (string) Operational Report.
value (string) The request body should contain the new value for the attribute.

Response:

When successful, the response body is empty.

Response status codes:

200 OK. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.

Resource URL:

PUT /maintenance/operationalReports/{operationalReportKey}/operationalReportKey

PUT Set OperationalReportState OperationalReport

Updates the value of attribute 'OperationalReportState' in the specified entity record.

The following elements are required:

operationalReportKey (string) Operational Report.
value (string) The request body should contain the new value for the attribute.

Response:

When successful, the response body is empty.

Response status codes:

200 OK. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.

Resource URL:

PUT /maintenance/operationalReports/{operationalReportKey}/operationalReportState

PUT Set PrintDate OperationalReport

Updates the value of attribute 'PrintDate' in the specified entity record.

The following elements are required:

operationalReportKey (string) Operational Report.
value (DateTimeOffset) The request body should contain the new value for the attribute.

Response:

When successful, the response body is empty.

Response status codes:

200 OK. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.

Resource URL:

PUT /maintenance/operationalReports/{operationalReportKey}/printDate

PUT Set PrintedReportName OperationalReport

Updates the value of attribute 'PrintedReportName' in the specified entity record.

The following elements are required:

operationalReportKey (string) Operational Report.
value (string) The request body should contain the new value for the attribute.

Response:

When successful, the response body is empty.

Response status codes:

200 OK. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.

Resource URL:

PUT /maintenance/operationalReports/{operationalReportKey}/printedReportName

PUT Set Priorirty OperationalReport

Updates the value of attribute 'Priorirty' in the specified entity record.

The following elements are required:

operationalReportKey (string) Operational Report.
value (string) The request body should contain the new value for the attribute.

Response:

When successful, the response body is empty.

Response status codes:

200 OK. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.

Resource URL:

PUT /maintenance/operationalReports/{operationalReportKey}/priorirty

PUT Set ProductInfo OperationalReport

Updates the value of attribute 'ProductInfo' in the specified entity record.

The following elements are required:

operationalReportKey (string) Operational Report.
value (string) The request body should contain the new value for the attribute.

Response:

When successful, the response body is empty.

Response status codes:

200 OK. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.

Resource URL:

PUT /maintenance/operationalReports/{operationalReportKey}/productInfo

PUT Set Remarks OperationalReport

Updates the value of attribute 'Remarks' in the specified entity record.

The following elements are required:

operationalReportKey (string) Operational Report.
value (string) The request body should contain the new value for the attribute.

Response:

When successful, the response body is empty.

Response status codes:

200 OK. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.

Resource URL:

PUT /maintenance/operationalReports/{operationalReportKey}/remarks

PUT Set RequestedBy OperationalReportRequest

Updates the value of attribute 'RequestedBy' in the specified entity record.

The following elements are required:

operationalReportKey (string) Operational Report.
lineId (string) The detail identifier.
value (string) The request body should contain the new value for the attribute.

Response:

When successful, the response body is empty.

Response status codes:

200 OK. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.

Resource URL:

PUT /maintenance/operationalReports/{operationalReportKey}/operationalReportRequests/{lineId}/requestedBy

PUT Set RequestKey OperationalReportRequest

Updates the value of attribute 'RequestKey' in the specified entity record.

The following elements are required:

operationalReportKey (string) Operational Report.
lineId (string) The detail identifier.
value (string) The request body should contain the new value for the attribute.

Response:

When successful, the response body is empty.

Response status codes:

200 OK. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.

Resource URL:

PUT /maintenance/operationalReports/{operationalReportKey}/operationalReportRequests/{lineId}/requestKey

PUT Set Responsible OperationalReport

Updates the value of attribute 'Responsible' in the specified entity record.

The following elements are required:

operationalReportKey (string) Operational Report.
value (string) The request body should contain the new value for the attribute.

Response:

When successful, the response body is empty.

Response status codes:

200 OK. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.

Resource URL:

PUT /maintenance/operationalReports/{operationalReportKey}/responsible

PUT Set TransitionDate OperationalReportTransition

Updates the value of attribute 'TransitionDate' in the specified entity record.

The following elements are required:

operationalReportKey (string) Operational Report.
lineId (string) The detail identifier.
value (DateTimeOffset) The request body should contain the new value for the attribute.

Response:

When successful, the response body is empty.

Response status codes:

200 OK. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.

Resource URL:

PUT /maintenance/operationalReports/{operationalReportKey}/operationalReportTransitions/{lineId}/transitionDate

PUT Set TransitionNewState OperationalReportTransition

Updates the value of attribute 'TransitionNewState' in the specified entity record.

The following elements are required:

operationalReportKey (string) Operational Report.
lineId (string) The detail identifier.
value (string) The request body should contain the new value for the attribute.

Response:

When successful, the response body is empty.

Response status codes:

200 OK. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.

Resource URL:

PUT /maintenance/operationalReports/{operationalReportKey}/operationalReportTransitions/{lineId}/transitionNewState

PUT Set TransitionPreviousState OperationalReportTransition

Updates the value of attribute 'TransitionPreviousState' in the specified entity record.

The following elements are required:

operationalReportKey (string) Operational Report.
lineId (string) The detail identifier.
value (string) The request body should contain the new value for the attribute.

Response:

When successful, the response body is empty.

Response status codes:

200 OK. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.

Resource URL:

PUT /maintenance/operationalReports/{operationalReportKey}/operationalReportTransitions/{lineId}/transitionPreviousState

PUT Set TransitionResponsible OperationalReportTransition

Updates the value of attribute 'TransitionResponsible' in the specified entity record.

The following elements are required:

operationalReportKey (string) Operational Report.
lineId (string) The detail identifier.
value (string) The request body should contain the new value for the attribute.

Response:

When successful, the response body is empty.

Response status codes:

200 OK. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.

Resource URL:

PUT /maintenance/operationalReports/{operationalReportKey}/operationalReportTransitions/{lineId}/transitionResponsible

PUT Set Type OperationalReport

Updates the value of attribute 'Type' in the specified entity record.

The following elements are required:

operationalReportKey (string) Operational Report.
value (string) The request body should contain the new value for the attribute.

Response:

When successful, the response body is empty.

Response status codes:

200 OK. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.

Resource URL:

PUT /maintenance/operationalReports/{operationalReportKey}/type

PUT Set VerificationAsset OperationalReportVerification

Updates the value of attribute 'VerificationAsset' in the specified entity record.

The following elements are required:

operationalReportKey (string) Operational Report.
lineId (string) The detail identifier.
value (string) The request body should contain the new value for the attribute.

Response:

When successful, the response body is empty.

Response status codes:

200 OK. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.

Resource URL:

PUT /maintenance/operationalReports/{operationalReportKey}/operationalReportVerifications/{lineId}/verificationAsset

PUT Set VerificationDuration OperationalReportVerification

Updates the value of attribute 'VerificationDuration' in the specified entity record.

The following elements are required:

operationalReportKey (string) Operational Report.
lineId (string) The detail identifier.
value (string) The request body should contain the new value for the attribute.

Response:

When successful, the response body is empty.

Response status codes:

200 OK. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.

Resource URL:

PUT /maintenance/operationalReports/{operationalReportKey}/operationalReportVerifications/{lineId}/verificationDuration

PUT Set VerificationEmployee OperationalReportVerification

Updates the value of attribute 'VerificationEmployee' in the specified entity record.

The following elements are required:

operationalReportKey (string) Operational Report.
lineId (string) The detail identifier.
value (string) The request body should contain the new value for the attribute.

Response:

When successful, the response body is empty.

Response status codes:

200 OK. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.

Resource URL:

PUT /maintenance/operationalReports/{operationalReportKey}/operationalReportVerifications/{lineId}/verificationEmployee

PUT Set VerificationPlan OperationalReportVerification

Updates the value of attribute 'VerificationPlan' in the specified entity record.

The following elements are required:

operationalReportKey (string) Operational Report.
lineId (string) The detail identifier.
value (string) The request body should contain the new value for the attribute.

Response:

When successful, the response body is empty.

Response status codes:

200 OK. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.

Resource URL:

PUT /maintenance/operationalReports/{operationalReportKey}/operationalReportVerifications/{lineId}/verificationPlan

PUT Set VerificationRemarks OperationalReportVerification

Updates the value of attribute 'VerificationRemarks' in the specified entity record.

The following elements are required:

operationalReportKey (string) Operational Report.
lineId (string) The detail identifier.
value (string) The request body should contain the new value for the attribute.

Response:

When successful, the response body is empty.

Response status codes:

200 OK. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.

Resource URL:

PUT /maintenance/operationalReports/{operationalReportKey}/operationalReportVerifications/{lineId}/verificationRemarks

PUT Set VerificationTask OperationalReportVerification

Updates the value of attribute 'VerificationTask' in the specified entity record.

The following elements are required:

operationalReportKey (string) Operational Report.
lineId (string) The detail identifier.
value (string) The request body should contain the new value for the attribute.

Response:

When successful, the response body is empty.

Response status codes:

200 OK. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.

Resource URL:

PUT /maintenance/operationalReports/{operationalReportKey}/operationalReportVerifications/{lineId}/verificationTask

PUT Set VerificationValue OperationalReportVerification

Updates the value of attribute 'VerificationValue' in the specified entity record.

The following elements are required:

operationalReportKey (string) Operational Report.
lineId (string) The detail identifier.
value (string) The request body should contain the new value for the attribute.

Response:

When successful, the response body is empty.

Response status codes:

200 OK. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.

Resource URL:

PUT /maintenance/operationalReports/{operationalReportKey}/operationalReportVerifications/{lineId}/verificationValue

PUT Set VerificationVerification OperationalReportVerification

Updates the value of attribute 'VerificationVerification' in the specified entity record.

The following elements are required:

operationalReportKey (string) Operational Report.
lineId (string) The detail identifier.
value (string) The request body should contain the new value for the attribute.

Response:

When successful, the response body is empty.

Response status codes:

200 OK. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.

Resource URL:

PUT /maintenance/operationalReports/{operationalReportKey}/operationalReportVerifications/{lineId}/verificationVerification

PUT Set WorkOrder OperationalReport

Updates the value of attribute 'WorkOrder' in the specified entity record.

The following elements are required:

operationalReportKey (string) Operational Report.
value (string) The request body should contain the new value for the attribute.

Response:

When successful, the response body is empty.

Response status codes:

200 OK. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.

Resource URL:

PUT /maintenance/operationalReports/{operationalReportKey}/workOrder

PUT Set Workshop OperationalReport

Updates the value of attribute 'Workshop' in the specified entity record.

The following elements are required:

operationalReportKey (string) Operational Report.
value (string) The request body should contain the new value for the attribute.

Response:

When successful, the response body is empty.

Response status codes:

200 OK. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.

Resource URL:

PUT /maintenance/operationalReports/{operationalReportKey}/workshop

PUT Set Custom Attribute OperationalReport

Updates the value of 'CustomAttribute' in the specified entity record.

The following elements are required:

operationalReportKey (string) Operational Report
customAttributeName (string) The custom attribute name.
value (ExtensibilityCustomAttributeValueResource) The request body should contain the new value for the custom attribute.
See ExtensibilityCustomAttributeValueResource.

Response:

When successful, the response body is empty.

Response status codes:

200 OK. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.
404 NotFound. The specified record does not exist.

Resource URL:

PUT /maintenance/operationalReports/{operationalReportKey}/{customAttributeName}

PUT Set Custom Attribute OperationalReportTransition

Updates the value of 'CustomAttribute' in the specified entity record.

The following elements are required:

operationalReportKey (string) Operational Report
lineId (string) The detail identifier.
customAttributeName (string) The custom attribute name.
value (ExtensibilityCustomAttributeValueResource) The request body should contain the new value for the custom attribute.
See ExtensibilityCustomAttributeValueResource.

Response:

When successful, the response body is empty.

Response status codes:

200 OK. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.
404 NotFound. The specified record does not exist.

Resource URL:

PUT /maintenance/operationalReports/{operationalReportKey}/operationalReportTransitions/{lineId}/{customAttributeName}

PUT Set Custom Attribute OperationalReportVerification

Updates the value of 'CustomAttribute' in the specified entity record.

The following elements are required:

operationalReportKey (string) Operational Report
lineId (string) The detail identifier.
customAttributeName (string) The custom attribute name.
value (ExtensibilityCustomAttributeValueResource) The request body should contain the new value for the custom attribute.
See ExtensibilityCustomAttributeValueResource.

Response:

When successful, the response body is empty.

Response status codes:

200 OK. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.
404 NotFound. The specified record does not exist.

Resource URL:

PUT /maintenance/operationalReports/{operationalReportKey}/operationalReportVerifications/{lineId}/{customAttributeName}

PUT Set Custom Attribute OperationalReportLabor

Updates the value of 'CustomAttribute' in the specified entity record.

The following elements are required:

operationalReportKey (string) Operational Report
lineId (string) The detail identifier.
customAttributeName (string) The custom attribute name.
value (ExtensibilityCustomAttributeValueResource) The request body should contain the new value for the custom attribute.
See ExtensibilityCustomAttributeValueResource.

Response:

When successful, the response body is empty.

Response status codes:

200 OK. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.
404 NotFound. The specified record does not exist.

Resource URL:

PUT /maintenance/operationalReports/{operationalReportKey}/operationalReportLabors/{lineId}/{customAttributeName}

PUT Set Custom Attribute OperationalReportConsumption

Updates the value of 'CustomAttribute' in the specified entity record.

The following elements are required:

operationalReportKey (string) Operational Report
lineId (string) The detail identifier.
customAttributeName (string) The custom attribute name.
value (ExtensibilityCustomAttributeValueResource) The request body should contain the new value for the custom attribute.
See ExtensibilityCustomAttributeValueResource.

Response:

When successful, the response body is empty.

Response status codes:

200 OK. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.
404 NotFound. The specified record does not exist.

Resource URL:

PUT /maintenance/operationalReports/{operationalReportKey}/operationalReportConsumptions/{lineId}/{customAttributeName}

PUT Set Custom Attribute OperationalReportMiscCost

Updates the value of 'CustomAttribute' in the specified entity record.

The following elements are required:

operationalReportKey (string) Operational Report
lineId (string) The detail identifier.
customAttributeName (string) The custom attribute name.
value (ExtensibilityCustomAttributeValueResource) The request body should contain the new value for the custom attribute.
See ExtensibilityCustomAttributeValueResource.

Response:

When successful, the response body is empty.

Response status codes:

200 OK. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.
404 NotFound. The specified record does not exist.

Resource URL:

PUT /maintenance/operationalReports/{operationalReportKey}/operationalReportMiscCosts/{lineId}/{customAttributeName}

DELETE Operations

DELETE Operational Report Transition by identifier

Deletes the entity record that matches the specified identifier.

The following elements are required:

operationalReportKey (string) Operational Report.
lineId (string) The line identifier.

Response:

When successful, the response body is empty.

Response status codes:

204 NoContent. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.
404 NotFound. The specified record does not exist.

Resource URL:

DELETE /maintenance/operationalReports/{operationalReportKey}/operationalReportTransitions/{lineId}

DELETE Operational Report Verification by identifier

Deletes the entity record that matches the specified identifier.

The following elements are required:

operationalReportKey (string) Operational Report.
lineId (string) The line identifier.

Response:

When successful, the response body is empty.

Response status codes:

204 NoContent. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.
404 NotFound. The specified record does not exist.

Resource URL:

DELETE /maintenance/operationalReports/{operationalReportKey}/operationalReportVerifications/{lineId}

DELETE Operational Report Labor by identifier

Deletes the entity record that matches the specified identifier.

The following elements are required:

operationalReportKey (string) Operational Report.
lineId (string) The line identifier.

Response:

When successful, the response body is empty.

Response status codes:

204 NoContent. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.
404 NotFound. The specified record does not exist.

Resource URL:

DELETE /maintenance/operationalReports/{operationalReportKey}/operationalReportLabors/{lineId}

DELETE Operational Report Consumption by identifier

Deletes the entity record that matches the specified identifier.

The following elements are required:

operationalReportKey (string) Operational Report.
lineId (string) The line identifier.

Response:

When successful, the response body is empty.

Response status codes:

204 NoContent. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.
404 NotFound. The specified record does not exist.

Resource URL:

DELETE /maintenance/operationalReports/{operationalReportKey}/operationalReportConsumptions/{lineId}

DELETE Operational Report Misc Cost by identifier

Deletes the entity record that matches the specified identifier.

The following elements are required:

operationalReportKey (string) Operational Report.
lineId (string) The line identifier.

Response:

When successful, the response body is empty.

Response status codes:

204 NoContent. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.
404 NotFound. The specified record does not exist.

Resource URL:

DELETE /maintenance/operationalReports/{operationalReportKey}/operationalReportMiscCosts/{lineId}

DELETE Operational Report Request by identifier

Deletes the entity record that matches the specified identifier.

The following elements are required:

operationalReportKey (string) Operational Report.
lineId (string) The line identifier.

Response:

When successful, the response body is empty.

Response status codes:

204 NoContent. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.
404 NotFound. The specified record does not exist.

Resource URL:

DELETE /maintenance/operationalReports/{operationalReportKey}/operationalReportRequests/{lineId}

DELETE OperationalReport by identifier

Deletes the entity record that matches the specified identifier.

The following elements are required:

id (string) The record identifier.

Response:

When successful, the response body is empty.

Response status codes:

204 Deleted. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.
404 NotFound. The specified record does not exist.

Resource URL:

DELETE /maintenance/operationalReports/{id}

DELETE OperationalReport by key

Deletes the entity record that matches the specified key.

The following elements are required:

operationalReportKey (string) Operational Report.

Response:

When successful, the response body is empty.

Response status codes:

204 Deleted. The operation was completed successfully.
400 BadRequest. The request parameters are invalid.
404 NotFound. The specified record does not exist.

Resource URL:

DELETE /maintenance/operationalReports/{operationalReportKey}

Resources


ApiOperationalReportOperationalReportConsumptionsResource

The following elements are optional:

consumptionPart (string) Part / Description.
consumptionQuantity (string) Quantity / Unit.
consumptionWarehouse (string) Warehouse.
consumptionAsset (string) Asset.
consumptionDate (DateTimeOffset) Consumption Date.


ApiOperationalReportOperationalReportLaborsResource

The following elements are optional:

laborSpecialty (string) Specialty.
laborEmployee (string) Employee.
laborStartDate (DateTimeOffset) Start Date.
laborEndDate (DateTimeOffset) End Date.
laborHours (string) Total Time.
laborAsset (string) Asset.
laborDate (DateTimeOffset) Labor Date.


ApiOperationalReportOperationalReportMiscCostsResource

The following elements are optional:

miscCostDate (DateTimeOffset) Date.
miscCostMiscCost (string) Misc Cost.
miscCostEmployee (string) Employee.
miscCostQuantity (string) Quantity.
miscCostValue (string) Value.
miscCostAsset (string) Asset.


ApiOperationalReportOperationalReportRequestsResource

The following elements are optional:

requestKey (string) Request.
description (string) Description.
requestedBy (string) Requested By.


ApiOperationalReportOperationalReportTransitionsResource

The following elements are optional:

transitionDate (DateTimeOffset) Date.
transitionPreviousState (string) Previous State.
transitionNewState (string) New State.
transitionResponsible (string) Responsible.


ApiOperationalReportOperationalReportVerificationsResource

The following elements are optional:

verificationAsset (string) Asset.
verificationPlan (string) Plan.
verificationTask (string) Task.
verificationDuration (string) Duration.
verificationVerification (string) Verification.
verificationEmployee (string) Employee.
verificationRemarks (string) Remarks.
verificationValue (string) Value.


ApiOperationalReportResource

The following elements are required:

operationalReportKey (string) Operational Report.
company (string) Company.

The following elements are optional:

isPrinted (bool) Is Printed.
workOrder (string) Work Order.
assetType (string) Asset Type.
asset (string) Asset.
type (string) Type.
operationalReportState (string) Operational Report State.
workshop (string) Workshop.
responsible (string) Responsible.
date (DateTimeOffset) Date.
priorirty (string) Priority.
printDate (DateTimeOffset) Print Date.
operationalReportTransitions (List of ApiOperationalReportOperationalReportTransitionsResource) Tasks.
See ApiOperationalReportOperationalReportTransitionsResource.
operationalReportVerifications (List of ApiOperationalReportOperationalReportVerificationsResource) Verifications.
See ApiOperationalReportOperationalReportVerificationsResource.
operationalReportLabors (List of ApiOperationalReportOperationalReportLaborsResource) Labors.
See ApiOperationalReportOperationalReportLaborsResource.
operationalReportConsumptions (List of ApiOperationalReportOperationalReportConsumptionsResource) Consumptions.
See ApiOperationalReportOperationalReportConsumptionsResource.
operationalReportMiscCosts (List of ApiOperationalReportOperationalReportMiscCostsResource) Misc Costs.
See ApiOperationalReportOperationalReportMiscCostsResource.
productInfo (string) Product Info.
remarks (string) Remarks.
details (string) Details.
moreDetails (string) More Details.
operationalReportRequests (List of ApiOperationalReportOperationalReportRequestsResource) Operational Report Requests.
See ApiOperationalReportOperationalReportRequestsResource.
printedReportName (string) Printed Report Name.
isReprinted (bool) Is Reprinted.
isSigned (bool) Is Signed.


OperationalReportResource

The following elements are required:

operationalReportKey (string) Operational Report.
company (string) Company.
(fk) Allowed value: the natural key of a record of type Company. These records are accessibly through the Companies service.

The following elements are optional:

isPrinted (bool) Is Printed.
workOrder (string) Work Order.
assetType (string) Asset Type.
asset (string) Asset.
type (string) Type.
operationalReportState (string) Operational Report State.
workshop (string) Workshop.
responsible (string) Responsible.
date (DateTimeOffset) Date.
priorirty (string) Priority.
printDate (DateTimeOffset) Print Date.
operationalReportTransitions (List of OperationalReportTransitionResource) Tasks.
See OperationalReportTransitionResource.
operationalReportVerifications (List of OperationalReportVerificationResource) Verifications.
See OperationalReportVerificationResource.
operationalReportLabors (List of OperationalReportLaborResource) Labors.
See OperationalReportLaborResource.
operationalReportConsumptions (List of OperationalReportConsumptionResource) Consumptions.
See OperationalReportConsumptionResource.
operationalReportMiscCosts (List of OperationalReportMiscCostResource) Misc Costs.
See OperationalReportMiscCostResource.
productInfo (string) Product Info.
remarks (string) Remarks.
details (string) Details.
moreDetails (string) More Details.
operationalReportRequests (List of OperationalReportRequestResource) Operational Report Requests.
See OperationalReportRequestResource.
printedReportName (string) Printed Report Name.
isReprinted (bool) Is Reprinted.
isSigned (bool) Is Signed.


ExtensibilityCustomAttributeValueResource

The following elements are required:

value (object) The custom attribute value.