Update a project opportunity

patch

/fscmRestApi/resources/11.13.18.05/projects/{ProjectId}/child/ProjectOpportunities/{OpportunityId}

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
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 : projects-ProjectOpportunities-item-response
Type: object
Show Source
Back to Top

Examples

The following example shows how to update a project opportunity by submitting a PATCH request on the REST resource using cURL.

curl --user ppm_cloud_user -X PATCH -d @example_request_payload.json --header "Content-Type: application/json" https://your_organization.com:port/fscmRestApi/resources/11.13.0.0projects/300100093207556/child/ProjectOpportunities/999997817603769

Example of Request Body

The following example shows the request body to update the amount, status, and win probability percentage of the project opportunity with opportunity ID 999997817603769 that is associated to the project with project ID 300100093207556.

{
  "OpportunityAmount" : 40000,
  "OpportunityStatus" : "SUCCESS",
  "OpportunityWinConfPercent" : 100
}

Example of Response Body

The following example shows the contents of the response body in JSON format, including the updated amount, status, and win probability percentage of the project opportunity.

{
  "OpportunityAltNumber" : null,
  "OpportunityAmount" : 40000,
  "OpportunityCurrencyCode" : null,
  "OpportunityCustomerId" : null,
  "OpportunityCustomerName" : "Professional Services_101408870",
  "OpportunityCustomerNumber" : "999997569489397",
  "OpportunityDescription" : null,
  "OpportunityName" : "TM BDO PeopleSoft Upgrade HCM 8.3 to 9.0",
  "OpportunityNumber" : "3-5R7RY1",
  "OpportunityStatus" : "SUCCESS",
  "OpportunityWinConfPercent" : 100,
  "OpportunityId" : 999997817603769,
  "ProjectId" : 300100093207556,
  "links" : [{
    "rel" : "self",
    ...  
            }]
  ...
}
Back to Top