curl --request POST \
--url https://api.example.com/api/v1/quotes \
--header 'Content-Type: application/json' \
--data '
{
"supplierId": "<string>",
"totalAmount": 123,
"rfqId": "<string>",
"currency": "USD",
"status": "draft",
"validityDate": "<string>",
"notes": "<string>",
"lineItems": []
}
'{
"id": "<string>",
"orgId": "<string>",
"supplierId": "<string>",
"totalAmount": 123,
"currency": "<string>",
"status": "<string>",
"rfqId": "<string>",
"supplierName": "<string>",
"validityDate": "<string>",
"notes": "<string>",
"lineItems": [],
"createdAt": "<string>",
"updatedAt": "<string>"
}Create a new quote with line items.
curl --request POST \
--url https://api.example.com/api/v1/quotes \
--header 'Content-Type: application/json' \
--data '
{
"supplierId": "<string>",
"totalAmount": 123,
"rfqId": "<string>",
"currency": "USD",
"status": "draft",
"validityDate": "<string>",
"notes": "<string>",
"lineItems": []
}
'{
"id": "<string>",
"orgId": "<string>",
"supplierId": "<string>",
"totalAmount": 123,
"currency": "<string>",
"status": "<string>",
"rfqId": "<string>",
"supplierName": "<string>",
"validityDate": "<string>",
"notes": "<string>",
"lineItems": [],
"createdAt": "<string>",
"updatedAt": "<string>"
}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.
Successful Response
Show child attributes