Update one instance

patch

/fscmRestApi/resources/11.13.18.05/productionResources/{ResourceId}/child/LaborInstance/{LaborInstanceId}

Request

Path Parameters
Header Parameters
  • 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".
  • 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.
Supported Media Types
Request Body - application/json ()
Root Schema : schema
Type: object
Show Source
Nested Schema : Flexfields for Labor Instances
Type: array
Title: Flexfields for Labor Instances
The Flexfields for Labor Instances resource manages descriptive flexfields that the labor instances uses.
Show Source
Nested Schema : productionResources-LaborInstance-LaborInstanceDFF-item-patch-request
Type: object
Show Source
Back to Top

Response

Supported Media Types

Default Response

The following table describes the default response for this task.
Headers
  • 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".
  • 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.
Body ()
Root Schema : productionResources-LaborInstance-item-response
Type: object
Show Source
  • Title: Inactive On
    Date when the labor instance becomes inactive.
  • Title: Identifier
    Maximum Length: 30
    Abbreviation that identifies the labor resource instance.
  • Flexfields for Labor Instances
    Title: Flexfields for Labor Instances
    The Flexfields for Labor Instances resource manages descriptive flexfields that the labor instances uses.
  • Value that uniquely identifies the labor resource instance. It is a primary key that the application generates when it creates a labor instance.
  • Title: Name
    Maximum Length: 360
    Name of the labor resource instance.
  • Links
  • Value that uniquely identifies the inventory organization. It is a primary key that the application generates when it creates an inventory organization.
  • Title: Registry ID
    Value that identifies the party table in Oracle Trading Community Architecture. It is a foreign key.
  • Title: Name
    Read Only: true
    Maximum Length: 360
    Person name stored in Oracle Trading Community Architecture.
  • Title: Usage
    Read Only: true
    Maximum Length: 30
    Type of person, such as employee, contingent worker, partner contact, and so on.
  • Title: Code
    Maximum Length: 30
    Abbreviation that identifies the primary work center.
  • Title: Primary Work Center
    Value that uniquely identifies the work center. It is a primary key that the application generates when it creates a work center. This is the default work center assigned to this equipment instance.
  • Title: Registry ID
    Maximum Length: 30
    Value that identifies the registry from the Oracle Trading Community Architecture. This attribute is a foreign key.
  • Title: Code
    Read Only: true
    Maximum Length: 30
    Abbreviation that identifies the production resource.
  • Value that uniquely identifies the production resource. It is a primary key that the application generates when it creates a production resource.
Nested Schema : Flexfields for Labor Instances
Type: array
Title: Flexfields for Labor Instances
The Flexfields for Labor Instances resource manages descriptive flexfields that the labor instances uses.
Show Source
Nested Schema : productionResources-LaborInstance-LaborInstanceDFF-item-response
Type: object
Show Source
Back to Top

Examples

This example describes how to update one instance.

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/version/productionResources/ResourceId/child/LaborInstance/LaborInstanceId"

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.

{
      "LaborInstanceName" : "John"
}

Example Response Body

The following example includes the contents of the response body in JSON format:

{
  "LaborInstanceId" : 300100159342614,
  "LaborIdentifier" : "B12345",
  "LaborInstanceName" : "John",
  "PartyId" : null,
  "PersonName" : null,
  "PersonType" : null,
  "OrganizationId" : 207,
  "ResourceId" : 300100083871582,
  "ResourceCode" : "AG_Res1",
  "PrimaryWorkCenterId" : 300100083871587,
  "PrimaryWorkCenterCode" : "AG_workcentre1",
  "InactiveDate" : null,
  "links" : [ {
..,
}]
Back to Top