Update one work area
patch
/fscmRestApi/resources/11.13.18.05/workAreas/{WorkAreaId}
Request
Path Parameters
-
WorkAreaId(required): integer(int64)
Value that uniquely identifies the work area. It is a primary key that the application generates when it creates a work area.
Header Parameters
-
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.
Supported Media Types
- application/json
Root Schema : schema
Type:
Show Source
object
-
InactiveDate: string
(date)
Title:
Inactive On
Date when the work area becomes inactive. -
WorkAreaCode: string
Title:
Code
Maximum Length:30
Abbreviation that identifies the work area. -
WorkAreaDescription: string
Title:
Description
Maximum Length:240
Description of the work area. -
WorkAreaDFF: array
Flexfields for Manufacturing Work Areas
Title:
Flexfields for Manufacturing Work Areas
The Flexfields for Work Areas resource manages the names of the descriptive flexfields that a work area references. -
WorkAreaName: string
Title:
Name
Maximum Length:120
Name of the work area.
Nested Schema : Flexfields for Manufacturing Work Areas
Type:
array
Title:
Flexfields for Manufacturing Work Areas
The Flexfields for Work Areas resource manages the names of the descriptive flexfields that a work area references.
Show Source
Nested Schema : schema
Type:
Show Source
object
-
__FLEX_Context: string
Title:
Context Segment
Maximum Length:80
Descriptive flexfield context name for work areas. -
__FLEX_Context_DisplayValue: string
Title:
Context Segment
Descriptive flexfield context display value for work areas. -
WorkAreaId: integer
(int64)
Value that uniquely identifies the work area. You can use a flexfield with this resource. A flexfield is a flexible data field that your organization can use to modify your implementation without having to write programming code.
Response
Supported Media Types
- application/json
Default Response
The following table describes the default response for this task.
Headers
-
Metadata-Context(required):
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(required):
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.
Root Schema : workAreas-item-response
Type:
Show Source
object
-
InactiveDate: string
(date)
Title:
Inactive On
Date when the work area becomes inactive. -
links: array
Links
Title:
Links
The link relations associated with the resource instance. -
OrganizationCode: string
Maximum Length:
18
Abbreviation that identifies the inventory organization. -
OrganizationId: integer
(int64)
Value that uniquely identifies the inventory organization. It is a primary key that the application generates when it creates an inventory organization.
-
OrganizationName: string
Read Only:
true
Maximum Length:240
Name of the inventory organization. -
WorkAreaCode: string
Title:
Code
Maximum Length:30
Abbreviation that identifies the work area. -
WorkAreaDescription: string
Title:
Description
Maximum Length:240
Description of the work area. -
WorkAreaDFF: array
Flexfields for Manufacturing Work Areas
Title:
Flexfields for Manufacturing Work Areas
The Flexfields for Work Areas resource manages the names of the descriptive flexfields that a work area references. -
WorkAreaId: integer
(int64)
Value that uniquely identifies the work area. It is a primary key that the application generates when it creates a work area.
-
WorkAreaName: string
Title:
Name
Maximum Length:120
Name of the work area.
Nested Schema : Links
Type:
array
Title:
Links
The link relations associated with the resource instance.
Show Source
Nested Schema : Flexfields for Manufacturing Work Areas
Type:
array
Title:
Flexfields for Manufacturing Work Areas
The Flexfields for Work Areas resource manages the names of the descriptive flexfields that a work area references.
Show Source
Nested Schema : link
Type:
Show Source
object
-
href: string
Title:
hyperlink reference
The URI to the related resource. -
kind: string
Title:
kind
Allowed Values:[ "collection", "item", "describe", "other" ]
The kind of the related resource. -
name: string
Title:
name
The name of the link to the related resource. -
properties: object
properties
-
rel: string
Title:
relation
Allowed Values:[ "self", "lov", "parent", "canonical", "child", "enclosure", "action", "custom" ]
The name of the relation to the resource instance. Example: self.
Nested Schema : properties
Type:
Show Source
object
-
changeIndicator: string
Change indicator or the ETag value of the resource instance.
Nested Schema : workAreas-WorkAreaDFF-item-response
Type:
Show Source
object
-
__FLEX_Context: string
Title:
Context Segment
Maximum Length:80
Descriptive flexfield context name for work areas. -
__FLEX_Context_DisplayValue: string
Title:
Context Segment
Descriptive flexfield context display value for work areas. -
links: array
Links
Title:
Links
The link relations associated with the resource instance. -
WorkAreaId: integer
(int64)
Value that uniquely identifies the work area. You can use a flexfield with this resource. A flexfield is a flexible data field that your organization can use to modify your implementation without having to write programming code.
Nested Schema : Links
Type:
array
Title:
Links
The link relations associated with the resource instance.
Show Source
Links
- WorkAreaDFF
-
Parameters:
- WorkAreaId:
$request.path.WorkAreaId
The Flexfields for Work Areas resource manages the names of the descriptive flexfields that a work area references. - WorkAreaId:
Examples
This example describes how to update one work area.
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/workAreas/WorkAreaId"
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.
{ "WorkAreaDescription" : "Automated Paint Shop" }
Example Response Body
The following example includes the contents of the response body in JSON format:
{ "OrganizationId" : 207, "OrganizationCode" : "M1", "OrganizationName" : "Seven Corporation", "WorkAreaId" : 300100153655336, "WorkAreaName" : "PAINT", "WorkAreaDescription" : "Automated Paint Shop", "WorkAreaCode" : "PAINT_WA", "InactiveDate" : null, "links" : [ { ... } ] }