Create one release backlog plan results job

post

/fscmRestApi/resources/11.13.18.05/bmDemandsReleaseJobs

Request

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 : Demands Release Executions
Type: array
Title: Demands Release Executions
The progress and status of each run of a release backlog planning results job.
Show Source
Nested Schema : bmDemandsReleaseJobs-DemandsReleaseExecutions-item-post-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 : bmDemandsReleaseJobs-item-response
Type: object
Show Source
Nested Schema : Demands Release Executions
Type: array
Title: Demands Release Executions
The progress and status of each run of a release backlog planning results job.
Show Source
Nested Schema : bmDemandsReleaseJobs-DemandsReleaseExecutions-item-response
Type: object
Show Source
  • Links
  • Read Only: true
    Percent completion of the release backlog planning results job.
  • Unique identifier of the scheduled process named Release Backlog Planning Results.
  • Percent completion of the release backlog planning results job.
  • Read Only: true
    Status of the release backlog planning results job. Valid values are 1 for success and 2 for failure. This attribute doesn't have a default value.
  • Read Only: true
    Maximum Length: 20
    Value that identifies the step of the release backlog planning results job.
Back to Top

Examples

This example describes how to create one release backlog plan results job.

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/bmDemandsReleaseJobs"

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 creates.

{     
  "ReleaseCriteria":"OrderNumber like '%BLM-PHANTOM-SO3'"
}

Note:

You can use other attributes in the request payload.

Example 1: Request payload with release demand ID list :

{
 "ReleaseDemandIdList" : "2934262,2934263"
}

Example 2: Request payload with order number in the release criteria:

{
"ReleaseCriteria": "OrderNumber='BLM_MR_SHIPSET1'"
}

Example Response Body

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

{
    "ProcessId": 278750,
    "ReleaseId": 44022,
    "Status": null,
    "LastUpdatedBy": null,
    "CreatedBy": null,
    "ReleaseCriteria": null,
    "ReleaseDemandIdList": null,
    "links": [
        {
            "rel": "self",
            "href": "https://servername/fscmRestApi/resources/version/bmDemandsReleaseJobs/00020000000EACED0005770800000000000440DE0000000EACED00057708000000000000ABF6",
            "name": "bmDemandsReleaseJobs",
            "kind": "item"
        },
        {
            "rel": "canonical",
            "href": "https://servername/fscmRestApi/resources/version/bmDemandsReleaseJobs/00020000000EACED0005770800000000000440DE0000000EACED00057708000000000000ABF6",
            "name": "bmDemandsReleaseJobs",
            "kind": "item"
        },
        {
            "rel": "child",
            "href": "https://servername/fscmRestApi/resources/version/bmDemandsReleaseJobs/00020000000EACED0005770800000000000440DE0000000EACED00057708000000000000ABF6/child/DemandsReleaseExecutions",
            "name": "DemandsReleaseExecutions",
            "kind": "collection"
        }
    ]
}
Back to Top