Update one applicability
/fscmRestApi/resources/11.13.18.05/meterTemplates/{MeterDefinitionId}/child/MeterApplicability/{ApplicabilityId}
Request
-
ApplicabilityId(required): integer(int64)
Value that uniquely identifies the meter applicability.
-
MeterDefinitionId(required): integer(int64)
Value that uniquely identifies a meter template definition. It is a value that the application generates when it creates a meter template definition. This value is referenced during retrieval and update of a meter template definition. This value cannot be updated after creation.
-
Metadata-Context: string
If the REST API supports runtime customizations, the shape of the service may change during runtime. The REST client may isolate itself from these changes or choose to interact with the latest version of the API by specifying this header. For example: Metadata-Context:sandbox="TrackEmployeeFeature".
-
REST-Framework-Version: string
The protocol version between a REST client and service. If the client does not specify this header in the request the server will pick a default version for the API.
- application/json
object-
ActiveEndDate: string
(date-time)
Title:
End DateDate when to stop using the item to create a meter for a new asset. -
ActiveStartDate: string
(date-time)
Title:
Start DateDate when to start using the item to create a meter for a new asset. -
ApplicabilityId: integer
(int64)
Title:
Applicability IDValue that uniquely identifies the meter applicability. -
MeterDefinitionId: integer
(int64)
Title:
Meter Definition IDValue that uniquely identifies the meter. -
ObjectVersionNumber: integer
(int32)
Number that identifies the object version.
Response
- application/json
Default Response
-
Metadata-Context:
If the REST API supports runtime customizations, the shape of the service may change during runtime. The REST client may isolate itself from these changes or choose to interact with the latest version of the API by specifying this header. For example: Metadata-Context:sandbox="TrackEmployeeFeature".
-
REST-Framework-Version:
The protocol version between a REST client and service. If the client does not specify this header in the request the server will pick a default version for the API.
object-
ActiveEndDate: string
(date-time)
Title:
End DateDate when to stop using the item to create a meter for a new asset. -
ActiveStartDate: string
(date-time)
Title:
Start DateDate when to start using the item to create a meter for a new asset. -
ApplicabilityId: integer
(int64)
Title:
Applicability IDValue that uniquely identifies the meter applicability. -
ItemDescription: string
Title:
Item DescriptionRead Only:trueMaximum Length:240Description of the item that the meter measures. -
ItemId: integer
(int64)
Value that uniquely identifies the item that the meter measures.
-
ItemNumber: string
Title:
Item NumberMaximum Length:300Number that identifies the item. -
links: array
Links
Title:
LinksThe link relations associated with the resource instance. -
MasterOrganizationCode: string
Title:
Master OrganizationMaximum Length:255Abbreviation that identifies the organization where the work order creates the item. -
MasterOrganizationId: integer
(int64)
Title:
Master OrganizationValue that uniquely identifies the organization where the work order creates the item. -
MeterDefinitionId: integer
(int64)
Title:
Meter Definition IDValue that uniquely identifies the meter. -
ObjectVersionNumber: integer
(int32)
Number that identifies the object version.
arrayLinksobject-
href: string
Title:
hyperlink referenceThe URI to the related resource. -
kind: string
Title:
kindAllowed Values:[ "collection", "item", "describe", "other" ]The kind of the related resource. -
name: string
Title:
nameThe name of the link to the related resource. -
properties: object
properties
-
rel: string
Title:
relationAllowed Values:[ "self", "lov", "parent", "canonical", "child", "enclosure", "action", "custom" ]The name of the relation to the resource instance. Example: self.
object-
changeIndicator: string
Change indicator or the ETag value of the resource instance.
Examples
This example describes how to update a meter applicability.
Example cURL Command
Use the following cURL command to submit a request on the REST resource.
curl -X PATCH -u "username:password" -H "Content-Type: application/vnd.oracle.adf.resourceitem+json" -d 'request payload' "https://servername/fscmRestApi/resources/versionmeterTemplates/MeterDefinitionId/child/MeterApplicability/ApplicabilityId"
Example Request Body
The following example includes the contents of the request body in JSON format. You replace the request payload in the cURL command with the contents of the Example Request Body. The request payload specifies attribute values that the command will use in the record that it updates.
{
"MasterOrganizationId": 204,
"ActiveStartDate": "2017-09-03T00:00:00-07:00",
"ActiveEndDate": "2018-08-27T00:00:00-07:00",
"ItemNumber": "alm-srl-001"
}Example Response Body
The following example includes the contents of the response body in JSON format:
{
"ActiveEndDate": "2018-08-27T07:00:00+00:00",
"ActiveStartDate": "2017-09-03T07:00:00+00:00",
"ApplicabilityId": 300100126599041,
"MeterDefinitionId": 300100126599039,
"MasterOrganizationId": 204,
"ObjectVersionNumber": 1,
"ItemNumber": "alm-srl-001",
"MasterOrganizationCode": "V1",
"ItemId": 300100013645842
} The following example includes the contents of the request body in JSON format to update the end date. You replace the request payload in the cURL command with the contents of the Example Request Body. The request payload specifies attribute values that the command will use in the record that it updates.
{
"ActiveEndDate": "2018-08-27T07:00:00+00:00"
}Example Response Body
The following example includes the contents of the response body in JSON format:
{
"ActiveEndDate": "2018-08-27T07:00:00+00:00",
"ActiveStartDate": "2017-09-03T07:00:00+00:00",
"ApplicabilityId": 300100126599041,
"MeterDefinitionId": 300100126599039,
"MasterOrganizationId": 204,
"ObjectVersionNumber": 1,
"ItemNumber": "alm-srl-001",
"MasterOrganizationCode": "V1",
"ItemId": 300100013645842
}