Valuekeep Developers - Web API Reference

Work | Operating State

Service to manage entities of type 'OperatingState'.

Overview


URL api/{tenantKey}/{orgKey}/maintenanceCore/operatingStates
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 OperatingStates (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 OperatingStateResource.

Response status codes:

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

Resource URL:

GET /maintenanceCore/operatingStates/odata

GET OperatingState 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 OperatingStateResource.

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 /maintenanceCore/operatingStates/{id}

GET OperatingState by key

Returns the entity record that matches the specified key.

The following elements are required:

operatingStateKey (string) Operating State.

Response:

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

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 /maintenanceCore/operatingStates/{operatingStateKey}

POST Operations

POST OperatingStates

Creates a new entity record.

The following elements are required:

operatingStateResource (ApiOperatingStateResource) The request body should contain the entity record that should be created.
See ApiOperatingStateResource.

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 ApiOperatingStateResource.

Response status codes:

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

Resource URL:

POST /maintenanceCore/operatingStates

PUT Operations

PUT Set Description OperatingState

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

The following elements are required:

operatingStateKey (string) Operating State.
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 /maintenanceCore/operatingStates/{operatingStateKey}/description

PUT Set IsActive OperatingState

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

The following elements are required:

operatingStateKey (string) Operating State.
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 /maintenanceCore/operatingStates/{operatingStateKey}/isActive

PUT Set IsDownState OperatingState

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

The following elements are required:

operatingStateKey (string) Operating State.
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 /maintenanceCore/operatingStates/{operatingStateKey}/isDownState

PUT Set OperatingStateKey OperatingState

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

The following elements are required:

operatingStateKey (string) Operating State.
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 /maintenanceCore/operatingStates/{operatingStateKey}/operatingStateKey

PUT Set Remarks OperatingState

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

The following elements are required:

operatingStateKey (string) Operating State.
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 /maintenanceCore/operatingStates/{operatingStateKey}/remarks

PUT Set Custom Attribute OperatingState

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

The following elements are required:

operatingStateKey (string) Operating State
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 /maintenanceCore/operatingStates/{operatingStateKey}/{customAttributeName}

DELETE Operations

DELETE OperatingState 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 /maintenanceCore/operatingStates/{id}

DELETE OperatingState by key

Deletes the entity record that matches the specified key.

The following elements are required:

operatingStateKey (string) Operating State.

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 /maintenanceCore/operatingStates/{operatingStateKey}

Resources


ApiOperatingStateResource

The following elements are required:

operatingStateKey (string) Operating State.
description (string) Description.
isDownState (bool) Is Down State.

The following elements are optional:

remarks (string) Remarks.


OperatingStateResource

The following elements are required:

operatingStateKey (string) Operating State.
description (string) Description.
isDownState (bool) Is Down State.

The following elements are optional:

remarks (string) Remarks.


ExtensibilityCustomAttributeValueResource

The following elements are required:

value (object) The custom attribute value.