Update Quote
PUT /v1/order/quote/:id
Updates an existing quote with new information such as title, text, dates, items, or offering details. This endpoint allows you to modify quote details before sending it to customers or to make corrections to quotes that are still in draft status. You can update individual fields or make comprehensive changes to the quote structure.
Request Body
{
"title": "(Optional) Title",
"text": "(Optional). Text",
"date": {
"delivery": "2026-02-19T07:39:45.742Z",
"order": "2026-02-19T07:39:45.742Z"
},
"items": [
{
"_id": "f5b3ddb8-7f4d-4d53-b676-ebbb5c3f81bb",
"amount": 1,
"customInputs": []
},
{
"_id": "caf991dc-17d0-493f-94e0-09ea7db6c9df",
"amount": 1,
"customInputs": []
},
{
"_id": "5d3c4fc2-c126-4ee0-a63f-7caa17c65348",
"amount": 2,
"customInputs": []
}
],
"edition": null,
"offering": "67e7bd9761e21572740ef237"
}
Example
update basic info
{
"title": "super-quote",
"text": "Best one, trust me!",
"items": [
{
"group_id": "b52ad07c-47fd-4509-abce-432cace1d77d"
}
]
}
as a subscription
{
"items": [
{
"_id": "db77de3c-80ca-41ce-b609-f969d427b46d",
"amount": 1,
"customInputs": []
},
{
"_id": "b52ad07c-47fd-4509-abce-432cace1d77d",
"amount": 1,
"customInputs": []
},
{
"_id": "64daaf11-6435-43d1-be37-4d238990c6d2",
"amount": 1,
"customInputs": []
}
],
"offering": "67e549958d955ede98356083",
"edition": null
}