POST quote/order/{quote}
Place order.
Request Information
URI
https://ofd-api.blueprintcpq.net/quote/order/{quote}
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
quote |
Quote Identifier. |
globally unique identifier |
Required |
Body Parameters
The order.
PlaceOrderName | Description | Type | Additional information |
---|---|---|---|
Share | globally unique identifier |
None. |
|
AcceptedTermsAndConditions | boolean |
None. |
|
PONumber | string |
None. |
|
Name | string |
None. |
|
OrderDate | date |
None. |
|
PODocuments | Collection of FileUpload |
None. |
Request Formats
application/json, text/json
Sample:
{ "Share": "543e9315-e76b-4da4-aeee-09d48851985f", "AcceptedTermsAndConditions": true, "PONumber": "sample string 3", "Name": "sample string 4", "OrderDate": "2024-10-09T09:52:21.7964529Z", "PODocuments": [ { "FileName": "sample string 1", "ContentType": "sample string 2", "Content": "sample string 3" }, { "FileName": "sample string 1", "ContentType": "sample string 2", "Content": "sample string 3" } ] }
text/html
Sample:
{"Share":"543e9315-e76b-4da4-aeee-09d48851985f","AcceptedTermsAndConditions":true,"PONumber":"sample string 3","Name":"sample string 4","OrderDate":"2024-10-09T09:52:21.7964529Z","PODocuments":[{"FileName":"sample string 1","ContentType":"sample string 2","Content":"sample string 3"},{"FileName":"sample string 1","ContentType":"sample string 2","Content":"sample string 3"}]}
application/xml, text/xml
Sample:
<PlaceOrder xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Shared.Models.DataModels"> <AcceptedTermsAndConditions>true</AcceptedTermsAndConditions> <Name>sample string 4</Name> <OrderDate>2024-10-09T09:52:21.7964529+00:00</OrderDate> <PODocuments> <FileUpload> <Content>sample string 3</Content> <ContentType>sample string 2</ContentType> <FileName>sample string 1</FileName> </FileUpload> <FileUpload> <Content>sample string 3</Content> <ContentType>sample string 2</ContentType> <FileName>sample string 1</FileName> </FileUpload> </PODocuments> <PONumber>sample string 3</PONumber> <Share>543e9315-e76b-4da4-aeee-09d48851985f</Share> </PlaceOrder>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
True if it succeeds, false if it fails.
booleanResponse Formats
application/json, text/json, text/html
Sample:
true
application/xml, text/xml
Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>