Create Order From Quote Action

Create an order from a quote record.

This action is available in API version 60.0 and later.

Special Access Rules

The Create Order From Quote action is available in Enterprise, Unlimited, and Developer Editions of Revenue Cloud.

Supported REST HTTP Methods

URI
/services/data/v63.0/actions/standard/createOrderFromQuote
Formats
JSON, XML
HTTP Methods
POST
Authentication
Authorization: Bearer token

Inputs

Input Details
quoteRecordId
Type
datetime
Description

Required.

ID of the quote record.

Outputs

Output Details
requestId
Type
string
Description
ID of the request.

Example

POST

This sample request is for the Create Order From Quote action.

{
    "inputs": [
        {
        "quoteRecordId": "0Q0D200000000DhKAI"
        }
    ]
}

This sample response is for the Create Order From Quote action.

[
    {
        "actionName": "createOrderFromQuote",
        "errors": null,
        "isSuccess": true,
        "outputValues": {
            "requestId": "143021b0-ada6-49f5-a2ea-6977a45c06a6"
        }
    }
]