Create one draft revision

post

/fscmRestApi/resources/11.13.18.05/supplierQualificationQuestions/action/revise

Creates the draft revision of a question.

Request

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/vnd.oracle.adf.action+json ()
Root Schema : schema
Type: object
Back to Top

Response

Supported Media Types

Default Response

The following table describes the default response for this task.
Body ()
Root Schema : schema
Type: object
Show Source
  • If the request is successful, then this action returns the question identifier of the original and new draft question.
Back to Top

Examples

This example describes how to create one draft revision. For more information, see the Manage Supplier Qualification Questions use case.

Example cURL Command

Use the following cURL command to submit a request on the REST resource.

curl -u username:password -X POST -H "Content-Type:application/vnd.oracle.adf.actionresult+json" -d "https://servername/fscmRestApi/resources/version/supplierQualificationQuestions/QuestionId/action/revise"

The following cURL command creates one draft revision.

curl -u username:password -X POST -H "Content-Type:application/vnd.oracle.adf.actionresult+json" -d "https://servername/fscmRestApi/resources/version/supplierQualificationQuestions/300100184866569/action/revise"

Example Response Body

The following example includes the contents of the response body in JSON format. If the request is successful, then this action returns the question identifier of the original and new draft question.

{
	"result": "A new revision for the question 300100184866569 was created in draft status. The new question ID is 300100184867441."
}
Back to Top