Update an expense resource assignment for a project task

patch

/fscmRestApi/resources/11.13.18.05/projects/{ProjectId}/child/Tasks/{TasksUniqID}/child/ExpenseResourceAssignments/{ExpenseResourceAssignmentId}

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

Examples

The following example shows how to update an expense 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/ExpenseResourceAssignments/300100089715751

Example of Request Body

The following example shows the request body to update the planned and actual amounts for the expense resource assignment with expense resource assignment ID 300100089715751 for the project task with task ID 300100093207564 that belongs to the project with project ID 300100093207556.

{
  "ExpenseResourcePlannedAmount": 2000,
  "ExpenseResourceActualAmount": 800
}

Example of Response Body

The following example shows the contents of the response body in JSON format, including the updated expense resource planned and actual amounts.

{
  "ExpenseResourceActualAmount" : 800,
  "ExpenseResourceAssignmentId" : 300100089715751,
  "ExpenseResourceId" : 1001,
  "ExpenseResourceName" : "Air",
  "ExpenseResourcePlannedAmount" : 2000,
  "ExpenseResourceRemainingAmount" : 1200,
  "ProjElementId" : 300100093207564,
  "links" : [{
    "rel" : "self",      
    ...
            }]
  ...
}
Back to Top