Create Supplier Negotiations from Template

You can use a negotiation template to create a negotiation with predefined negotiation overview controls, cover page, requirements, collaboration team, or suppliers. Once the draft negotiation is created with the standardized information, you can add lines from any source requisition application, or add and update any resource such as supplier or collaboration team. This will streamline the negotiation creation process.

You can use the Supplier Negotiations REST resource to create a negotiation from a template and add or update lines, suppliers, or collaboration team members with custom and standard actions.

Create a negotiation from template

You can use the custom action CreateNegotiationFromTemplate to:

  • Create a draft negotiation (RFQ, Auction or RFI)

  • Create a draft two-stage RFQ

Example URL

Use this resource URL format.

POST

curl -u username:password -X POST -H "Content-Type:application/vnd.oracle.adf.action+json" -d 'request payload' 
"https://servername/fscmRestApi/resources/version/supplierNegotiations/action/CreateNegotiationFromTemplate"

Example Request

Here's an example of the request body in JSON format.

{
	"parameters":
	{
		"ProcurementBUId": "204",
		"ProcurementBU": "Vision Operations",
		"NegotiationTypeId": "5",
		"NegotiationType": "RFQ",
		"NegotiationStyleId": "1",
		"NegotiationStyle": "Standard Negotiation",
		"NegotiationTemplate": "Conference Room Remodel",
		"CurrencyCode": "USD",
		"Currency": "US Dollar",
		"Buyer": "Jones, Clare",
		"TwoStageEvaluationFlag": false
	}
}

Example Response

Here's an example of the response body in JSON format.

{
	"result":
	{
		"AuctionHeaderId": "300100194925050",
		"Negotiation": 40015
	}
}