Skip to main content
POST
/
quotes
/
{quote_id}
/
convert-to-sales-order
Convert Quote To Sales Order
curl --request POST \
  --url https://api.example.com/quotes/{quote_id}/convert-to-sales-order \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "clientId": "<string>",
  "styleId": "<string>",
  "etd": "2023-11-07T05:31:56Z",
  "shippingTerm": "FOB",
  "paymentTerm": "Net 30",
  "notes": "<string>"
}
'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>",
      "input": "<unknown>",
      "ctx": {}
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.vinmake.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

quote_id
string
required

Body

application/json

Input for converting a quote to sales order

clientId
string
required

Client ID for the sales order

styleId
string
required

Style ID for the sales order

etd
string<date-time>
required

Estimated Time of Delivery

shippingTerm
string
default:FOB
paymentTerm
string
default:Net 30
notes
string | null

Response

Successful Response