Update a labor resource assignment for a project task

patch

/fscmRestApi/resources/11.13.18.05/projects/{ProjectId}/child/Tasks/{TasksUniqID}/child/LaborResourceAssignments/{LaborResourceAssignmentId}

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

Examples

The following example shows how to update a labor resource assignment 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.0/projects/300100093207556/child/Tasks/300100093207564/child/LaborResourceAssignments/300100093207565

Example of Request Body

The following example shows the request body to update the labor cost amount, labor billed amount, and primary resource indicator for the labor resource assignment with labor resource assignment ID 300100093207565 for the task with task ID 300100093207564 that belongs to the project with project ID 300100093207556.

{
  "LaborBilledAmount": 500,
  "LaborCostAmount": 400,
  "LaborPrimaryResource": "Y"
}

Example of Response Body

The following example shows the contents of the response body in JSON format, including the updated labor cost and labor billed amounts.

{
  "LaborBilledAmount" : 500,
  "LaborCostAmount" : 400,
  "LaborPrimaryResource" : null,
  "LaborResourceAssignmentId" : 300100093207565,
  "LaborResourceEmail" : "prj_connor_horton_grp@oracle.com",
  "LaborResourceId" : 300100024326655,
  "LaborResourceName" : "Connor Horton",
  "ProjElementId" : 300100093207564,
  "ResourceAllocationPercent" : 100,
  "links" : [{
    ...
            }]
}
Back to Top