Update the progress of a financial task

patch

/fscmRestApi/resources/11.13.18.05/projectProgress/{ProjectId}/child/TaskProgress/{TaskId}

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
Nested Schema : Attachments
Type: array
Title: Attachments
The Attachment resource is used to view, create, update, and delete attachments for task progress.
Show Source
Nested Schema : Notes
Type: array
Title: Notes
The Note resource is used to view, create, update, and delete notes for task progress.
Show Source
Nested Schema : Resource Progress
Type: array
Title: Resource Progress
The Project Progress resource is used to capture draft progress, view draft and published progress, update draft progress, and publish progress for a project enabled for financial management.
Show Source
Nested Schema : Task Progress Descriptive Flexfields
Type: array
Title: Task Progress Descriptive Flexfields
The Task Progress Descriptive Flexfields resource is used to view, create, and update additional information for task progress.
Show Source
Nested Schema : projectProgress-TaskProgress-Attachments-item-patch-request
Type: object
Show Source
Nested Schema : projectProgress-TaskProgress-Notes-item-patch-request
Type: object
Show Source
Nested Schema : schema
Type: object
Show Source
Nested Schema : Attachments
Type: array
Title: Attachments
The Attachment resource is used to view, create, update, and delete attachments for resource progress.
Show Source
Nested Schema : Notes
Type: array
Title: Notes
The Note resource is used to view, create, update, and delete notes for resource progress.
Show Source
Nested Schema : Resource Progress Descriptive Flexfields
Type: array
Title: Resource Progress Descriptive Flexfields
The Resource Progress Descriptive Flexfields resource is used to view, create, and update additional information for resource progress.
Show Source
Nested Schema : projectProgress-TaskProgress-ResourceProgress-Attachments-item-patch-request
Type: object
Show Source
Nested Schema : projectProgress-TaskProgress-ResourceProgress-Notes-item-patch-request
Type: object
Show Source
Nested Schema : projectProgress-TaskProgress-ResourceProgress-ResourceProgressDFF-item-patch-request
Type: object
Show Source
Nested Schema : projectProgress-TaskProgress-TaskProgressDFF-item-patch-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 : projectProgress-TaskProgress-item-response
Type: object
Show Source
Nested Schema : Attachments
Type: array
Title: Attachments
The Attachment resource is used to view, create, update, and delete attachments for task progress.
Show Source
Nested Schema : Notes
Type: array
Title: Notes
The Note resource is used to view, create, update, and delete notes for task progress.
Show Source
Nested Schema : Resource Progress
Type: array
Title: Resource Progress
The Project Progress resource is used to capture draft progress, view draft and published progress, update draft progress, and publish progress for a project enabled for financial management.
Show Source
Nested Schema : Task Progress Descriptive Flexfields
Type: array
Title: Task Progress Descriptive Flexfields
The Task Progress Descriptive Flexfields resource is used to view, create, and update additional information for task progress.
Show Source
Nested Schema : projectProgress-TaskProgress-Attachments-item-response
Type: object
Show Source
Nested Schema : projectProgress-TaskProgress-Notes-item-response
Type: object
Show Source
Nested Schema : projectProgress-TaskProgress-ResourceProgress-item-response
Type: object
Show Source
Nested Schema : Attachments
Type: array
Title: Attachments
The Attachment resource is used to view, create, update, and delete attachments for resource progress.
Show Source
Nested Schema : Notes
Type: array
Title: Notes
The Note resource is used to view, create, update, and delete notes for resource progress.
Show Source
Nested Schema : Resource Progress Descriptive Flexfields
Type: array
Title: Resource Progress Descriptive Flexfields
The Resource Progress Descriptive Flexfields resource is used to view, create, and update additional information for resource progress.
Show Source
Nested Schema : projectProgress-TaskProgress-ResourceProgress-Attachments-item-response
Type: object
Show Source
Nested Schema : projectProgress-TaskProgress-ResourceProgress-Notes-item-response
Type: object
Show Source
Nested Schema : projectProgress-TaskProgress-ResourceProgress-ResourceProgressDFF-item-response
Type: object
Show Source
Nested Schema : projectProgress-TaskProgress-TaskProgressDFF-item-response
Type: object
Show Source
Back to Top

Examples

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

curl --user ppm_cloud_user https://your_organization.com:port/fscmRestApi/resources/11.13.0.0/projectProgress/300100084467245/child/taskProgress/100100048792697

Example of Request Body

The following example shows the request body to update the progress of a project task with task id 100100048792697 that belongs to the project with the project ID 300100084467245.

{
    "PercentComplete": "15"
             							} 

Example of Response Body

The following example shows the contents of the response body in JSON format, including project progress:

 {
        "ProjectId": 300100084467245,
        "ProjectName": "PJO_PROGRESS_OTBI1",
        "ProjectNumber": "PJO_PROGRESS_OTBI1",
        "SourceApplicationCode": null,
        "SourceProjectReference": null,
        "TaskId": 100100048792697,
        "TaskName": "Schematic Design Phase",
        "TaskNumber": "1.0",
        "ProgressAsOfDate": "2015-05-21",
        "ProgressAsOfPeriod": "May-15",
        "ActualAmountsThroughPeriod": "May-16",
        "ActualAmountsDate": null,
        "PublicationStatus": "DRAFT",
        "CurrentActualAmountsPeriod": null,
        "CurrentActualAmountsDate": null,
        "PlannedStartDate": "2015-01-01",
        "PlannedFinishDate": "2015-03-17",
        "BaselineStartDate": "2015-01-01",
        "BaselineFinishDate": "2015-03-17",
        "EstimatedStartDate": "2015-01-01",
        "EstimatedFinishDate": "2015-03-17",
        "ActualStartDate": "2015-01-01",
        "ActualFinishDate": null,
        "PercentComplete": 15,
        	...
            							}
Back to Top