Update a requirement

patch

/fscmRestApi/resources/11.13.18.05/requirements/{RqmtId}

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 : BacklogItems
Type: array
Title: BacklogItems
The backlog item resource is used to view,create, or modify backlog items. A backlog item represents a unit of work that can be accomplished within a sprint.
Show Source
Nested Schema : ChildRequirements
Type: array
Title: ChildRequirements
The requirements resource is used to view,create, or modify a requirement. A requirement can be a functionality or a feature planned to be delivered in a product.
Show Source
Nested Schema : schema
Type: object
Show Source
Nested Schema : AcceptanceCriterions
Type: array
Title: AcceptanceCriterions
The acceptance criteria resource is used to view,create, or modify acceptance criteria of a backlogitem. Acceptance criteria is a condition that must be fulfilled for a backlog item to be complete.
Show Source
Nested Schema : requirements-BacklogItems-AcceptanceCriteria-item-patch-request
Type: object
Show Source
  • Title: Acceptance Criteria
    Maximum Length: 140
    Condition that must be fulfilled for considering the backlog item to be complete.
Nested Schema : requirements-ChildRequirements-item-patch-request
Type: object
Show Source
Nested Schema : BacklogItems
Type: array
Title: BacklogItems
The backlog item resource is used to view,create, or modify backlog items. A backlog item represents a unit of work that can be accomplished within a sprint.
Show Source
Nested Schema : ChildRequirements
Type: array
Title: ChildRequirements
The requirements resource is used to view,create, or modify a requirement. A requirement can be a functionality or a feature planned to be delivered in a product.
Show Source
Nested Schema : requirements-ChildRequirements-BacklogItems-item-patch-request
Type: object
Show Source
Nested Schema : AcceptanceCriterions
Type: array
Title: AcceptanceCriterions
The acceptance criteria resource is used to view,create, or modify acceptance criteria of a backlogitem. Acceptance criteria is a condition that must be fulfilled for a backlog item to be complete.
Show Source
Nested Schema : requirements-ChildRequirements-BacklogItems-AcceptanceCriteria-item-patch-request
Type: object
Show Source
  • Title: Acceptance Criteria
    Maximum Length: 140
    Condition that must be fulfilled for considering the backlog item to be complete.
Nested 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 : requirements-item-response
Type: object
Show Source
Nested Schema : BacklogItems
Type: array
Title: BacklogItems
The backlog item resource is used to view,create, or modify backlog items. A backlog item represents a unit of work that can be accomplished within a sprint.
Show Source
Nested Schema : ChildRequirements
Type: array
Title: ChildRequirements
The requirements resource is used to view,create, or modify a requirement. A requirement can be a functionality or a feature planned to be delivered in a product.
Show Source
Nested Schema : requirements-BacklogItems-item-response
Type: object
Show Source
Nested Schema : AcceptanceCriterions
Type: array
Title: AcceptanceCriterions
The acceptance criteria resource is used to view,create, or modify acceptance criteria of a backlogitem. Acceptance criteria is a condition that must be fulfilled for a backlog item to be complete.
Show Source
Nested Schema : requirements-BacklogItems-AcceptanceCriteria-item-response
Type: object
Show Source
  • Title: Acceptance Criteria ID
    Read Only: true
    Unique identifier of the acceptance criteria under the backlog item.
  • Title: Acceptance Criteria
    Maximum Length: 140
    Condition that must be fulfilled for considering the backlog item to be complete.
  • Links
Nested Schema : requirements-ChildRequirements-item-response
Type: object
Show Source
Nested Schema : BacklogItems
Type: array
Title: BacklogItems
The backlog item resource is used to view,create, or modify backlog items. A backlog item represents a unit of work that can be accomplished within a sprint.
Show Source
Nested Schema : ChildRequirements
Type: array
Title: ChildRequirements
The requirements resource is used to view,create, or modify a requirement. A requirement can be a functionality or a feature planned to be delivered in a product.
Show Source
Nested Schema : requirements-ChildRequirements-BacklogItems-item-response
Type: object
Show Source
Nested Schema : AcceptanceCriterions
Type: array
Title: AcceptanceCriterions
The acceptance criteria resource is used to view,create, or modify acceptance criteria of a backlogitem. Acceptance criteria is a condition that must be fulfilled for a backlog item to be complete.
Show Source
Nested Schema : requirements-ChildRequirements-BacklogItems-AcceptanceCriteria-item-response
Type: object
Show Source
  • Title: Acceptance Criteria ID
    Read Only: true
    Unique identifier of the acceptance criteria under the backlog item.
  • Title: Acceptance Criteria
    Maximum Length: 140
    Condition that must be fulfilled for considering the backlog item to be complete.
  • Links
Nested Schema : requirements-ChildRequirements-ChildRequirements-item-response
Type: object
Show Source
Back to Top

Examples

The following example shows how to update a requirement by submitting a POST 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.17.08/requirements/{RqmtId}

Example of Request Body

The following example shows the contents of the request body in JSON format

{
  
  "RqmtName": "ReqmtExample",
  "OwnerEmail": "prj_mark_taylor_in_grp@oracle.com",
  "Owner": "Mark Taylor",
  "StatusCode": "COMPLETE",
  "PriorityCode": "HIGH"
  
  }

Example of Response Body

The following example shows the contents of the response body in JSON format.

  {
  "RqmtId": 300100114013930,
  "RqmtName": "ReqmtExample",
  "OwnerEmail": "prj_mark_taylor_in_grp@oracle.com",
  "Owner": "Mark Taylor",
  "RqmtCode": "9062",
  "StatusCode": "COMPLETE",
  "Status": "Complete",
  "PriorityCode": "HIGH",
  "Priority": "High",
  "ParentRqmtId": 111,
  "ParentRqmtCode": "1",
  "ParentRqmtName": "All Requirements",
  "ReleaseNumber": null,
  "ReleaseName": null,
  "ProductCode": null,
  "ProductName": null,
  "links": [...
  ]
}
Back to Top