Run Publish PAR Policies process
/fscmRestApi/resources/11.13.18.05/publishParPolicies
Request
-
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-
JobId: integer
Value that uniquely identifies the last publish PAR policies process.
-
Message: string
Maximum Length:
10000Text of the error message, if any, encountered when submitting the process. -
PlanId: integer
Value that uniquely identifies the plan.
-
PlanName: string
Maximum Length:
32Name of the plan. -
SegmentIds: string
Maximum Length:
3000Values that uniquely identifies the segments. -
SegmentNames: string
Maximum Length:
3000Name of the segments.
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-
JobId: integer
Value that uniquely identifies the last publish PAR policies process.
-
links: array
Links
Title:
LinksThe link relations associated with the resource instance. -
Message: string
Maximum Length:
10000Text of the error message, if any, encountered when submitting the process. -
PlanId: integer
Value that uniquely identifies the plan.
-
PlanName: string
Maximum Length:
32Name of the plan. -
SegmentIds: string
Maximum Length:
3000Values that uniquely identifies the segments. -
SegmentNames: string
Maximum Length:
3000Name of the segments.
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 run the publish par policies process.
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/publishParPolicies"
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.
{
"PlanName": "REPL-AUTO-PAR",
"SegmentNames": "S1"
}
Example Response Body
The following example includes the contents of the response body in JSON format:
{
"PlanId": 300100578669000,
"PlanName": "REPL-AUTO-PAR",
"SegmentNames": "S1",
"SegmentIds": "300100578583832",
"JobId": 131660,
"Message": "",
"links": [
{
"rel": "self",
"href": "https://servername/fscmRestApi/resources/version/publishParPolicies/300100578669000",
"name": "publishParPolicies",
"kind": "item"
},
{
"rel": "canonical",
"href": "https://servername/fscmRestApi/resources/version/publishParPolicies/300100578669000",
"name": "publishParPolicies",
"kind": "item"
}
]
}