POST quote/order/{quote}

Place order.

Request Information

URI

https://ofd-api.blueprintcpq.net/quote/order/{quote}

URI Parameters

NameDescriptionTypeAdditional information
quote

Quote Identifier.

globally unique identifier

Required

Body Parameters

The order.

PlaceOrder
NameDescriptionTypeAdditional 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": "1adf0285-a793-4ffc-b1bb-07e2f4704b79",
  "AcceptedTermsAndConditions": true,
  "PONumber": "sample string 3",
  "Name": "sample string 4",
  "OrderDate": "2024-04-26T23:02:44.0785828Z",
  "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":"1adf0285-a793-4ffc-b1bb-07e2f4704b79","AcceptedTermsAndConditions":true,"PONumber":"sample string 3","Name":"sample string 4","OrderDate":"2024-04-26T23:02:44.0785828Z","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-04-26T23:02:44.0785828+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>1adf0285-a793-4ffc-b1bb-07e2f4704b79</Share>
</PlaceOrder>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

True if it succeeds, false if it fails.

boolean

Response 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>