Create security assignments
/fscmRestApi/resources/11.13.18.05/contentZones/{contentZonesUniqID}/child/securityAssignments
Request
-
contentZonesUniqID(required): string
This is the hash key of the attributes which make up the composite key for the Content Zones resource and used to uniquely identify an instance of Content Zones. The client should not generate the hash key value. Instead, the client should query on the Content Zones collection resource in order to navigate to a specific instance of Content Zones to get the hash key.
-
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.
- application/json
object-
DeliverToLocationCode: string
Title:
Deliver-to Location CodeCode of the deliver-to location to which the content zone is assigned. -
DeliverToLocationId: integer
(int64)
Default Value:
-2Value that uniquely identifies the deliver-to location to which the content zone is assigned. -
RequisitioningBU: string
Title:
Requisitioning BUName of the requisitioning business unit to which the content zone is assigned. -
RequisitioningBUId: integer
(int64)
Default Value:
-2Value that uniquely identifies the requisitioning business unit to which the content zone is assigned. -
WorkerEmail: string
Title:
Worker EmailEmail address of the worker to whom the content zone is assigned. -
WorkerId: integer
(int64)
Default Value:
-2Value that uniquely identifies the worker to whom the content zone is assigned.
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-
ContentZoneId: integer
(int64)
Read Only:
trueValue that uniquely identifies the content zone. -
ContentZoneSecurityAssignmentId: integer
(int64)
Read Only:
trueValue that uniquely identifies the security assignment. -
CreatedBy: string
Read Only:
trueMaximum Length:64User who created the security assignment. -
CreationDate: string
(date-time)
Read Only:
trueDate and time when the user created the security assignment. -
DeliverToLocation: string
Title:
Deliver-to LocationRead Only:trueMaximum Length:240Name of the deliver-to location to which the content zone is assigned. -
DeliverToLocationCode: string
Title:
Deliver-to Location CodeCode of the deliver-to location to which the content zone is assigned. -
DeliverToLocationId: integer
(int64)
Default Value:
-2Value that uniquely identifies the deliver-to location to which the content zone is assigned. -
LastUpdateDate: string
(date-time)
Read Only:
trueUser who most recently updated the security assignment. -
LastUpdatedBy: string
Read Only:
trueMaximum Length:64Date and time when the user most recently updated the security assignment. -
links: array
Links
Title:
LinksThe link relations associated with the resource instance. -
RequisitioningBU: string
Title:
Requisitioning BUName of the requisitioning business unit to which the content zone is assigned. -
RequisitioningBUId: integer
(int64)
Default Value:
-2Value that uniquely identifies the requisitioning business unit to which the content zone is assigned. -
Worker: string
Title:
WorkerRead Only:trueMaximum Length:240Name of the worker to whom the content zone is assigned. -
WorkerEmail: string
Title:
Worker EmailEmail address of the worker to whom the content zone is assigned. -
WorkerId: integer
(int64)
Default Value:
-2Value that uniquely identifies the worker to whom the content zone is assigned.
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 create security assignments.
Example cURL Command
Use the following cURL command to submit a request on the REST resource.
curl -u username:password -X POST -H "Content-Type:application/vnd.oracle.adf.resourceitem+json" -d 'request payload' "https://servername/fscmRestApi/resources/version/contentZones/contentZonesUniqID/child/securityAssignments"
Example 1
Assign a worker to a content zone.
Example 1 Request Body
The following example includes the contents of the request body in JSON format to assign a worker to a content zone that's enabled for requisitioning usage and secured by workers. 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.
{
"WorkerEmail": "anita.jones@oracle.com"
}
Example 1 Response Body
The following example includes the contents of the response body in JSON format:
{
"ContentZoneSecurityAssignmentId": 300100585323828,
"ContentZoneId": 300100585274636,
"RequisitioningBUId": null,
"RequisitioningBU": null,
"WorkerId": 300100554771090,
"Worker": "jones, anita",
"WorkerEmail": "anita.jones@oracle.com",
"DeliverToLocationId": null,
"DeliverToLocationCode": null,
"DeliverToLocation": null,
"CreatedBy": "CVBUYER01",
"CreationDate": "2023-11-02T05:22:06+00:00",
"LastUpdatedBy": "CVBUYER01",
"LastUpdateDate": "2023-11-02T05:22:06.408+00:00",
"links": [
. . .
]
}
Example 2
Assign a requisitioning BU to a content zone.
Example 2 Request Body
The following example includes the contents of the request body in JSON format to assign a requisitioning BU to a content zone that's enabled for requisitioning usage and secured by requisitioning BUs. 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.
{
"RequisitioningBU": "Vision Italy"
}
Example 2 Response Body
The following example includes the contents of the response body in JSON format:
{
"ContentZoneSecurityAssignmentId": 300100585359750,
"ContentZoneId": 300100585360628,
"RequisitioningBUId": 1017,
"RequisitioningBU": "Vision Italy",
"WorkerId": null,
"Worker": null,
"WorkerEmail": null,
"DeliverToLocationId": null,
"DeliverToLocationCode": null,
"DeliverToLocation": null,
"CreatedBy": "CVBUYER01",
"CreationDate": "2023-11-02T05:34:25+00:00",
"LastUpdatedBy": "CVBUYER01",
"LastUpdateDate": "2023-11-02T05:34:25.333+00:00",
"links": [
. . .
]
}
Example 3
Assign a deliver-to location to a content zone.
Example 3 Request Body
The following example includes the contents of the request body in JSON format to assign a deliver-to location to a content zone that's enabled for requisitioning usage and secured by deliver-to location. 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.
{
"DeliverToLocationCode": "Liberty Island"
}
Example 3 Response Body
The following example includes the contents of the response body in JSON format:
{
"ContentZoneSecurityAssignmentId": 300100586678205,
"ContentZoneId": 300100586683296,
"RequisitioningBUId": null,
"RequisitioningBU": null,
"WorkerId": null,
"Worker": null,
"WorkerEmail": null,
"DeliverToLocationId": 300100554701236,
"DeliverToLocationCode": "Liberty Island",
"DeliverToLocation": "Liberty Island",
"CreatedBy": "CVBUYER01",
"CreationDate": "2024-02-07T14:39:59+05:30",
"LastUpdatedBy": "CVBUYER01",
"LastUpdateDate": "2024-02-07T14:39:59.989+05:30",
"links": [
. . .
]
}