Admin creates a new Quote
Request
Body Params application/json
{
"customerId": "string",
"customerBranchId": "string",
"expirationDate": "2019-08-24T14:15:22Z",
"title": "string",
"status": "Quoted",
"notes": "string",
"netAmount": 0,
"lines": [
{
"productId": "string",
"productVariantId": "string",
"productTitle": "string",
"quantity": 0
}
]
}
Request samples
curl --location --request POST 'https://platform.shopranos.eu/api/Quotes/admin' \
--header 'Content-Type: application/json' \
--data-raw '{
"customerId": "string",
"customerBranchId": "string",
"expirationDate": "2019-08-24T14:15:22Z",
"title": "string",
"status": "Quoted",
"notes": "string",
"netAmount": 0,
"lines": [
{
"productId": "string",
"productVariantId": "string",
"productTitle": "string",
"quantity": 0
}
]
}'
Responses
application/json Modified at 2024-11-18 09:44:17