POST api/quotations
Request Information
URI Parameters
None.
Body Parameters
CreateQuotationDto| Name | Description | Type | Additional information |
|---|---|---|---|
| BuyerId | string |
Required String length: inclusive between 0 and 128 |
|
| SellerStoreId | integer |
Required |
|
| EnquiryId | integer |
None. |
|
| ListingId | integer |
None. |
|
| ValidUntil | date |
None. |
|
| DeliveryFee | decimal number |
None. |
|
| DiscountAmount | decimal number |
None. |
|
| TaxAmount | decimal number |
None. |
|
| Notes | string |
String length: inclusive between 0 and 2000 |
|
| Terms | string |
String length: inclusive between 0 and 2000 |
|
| Items | Collection of QuotationItemInputDto |
None. |
Request Formats
application/json, text/json
Sample:
{
"buyerId": "sample string 1",
"sellerStoreId": 2,
"enquiryId": 1,
"listingId": 1,
"validUntil": "2026-06-05T19:03:54.7327381+02:00",
"deliveryFee": 3.0,
"discountAmount": 4.0,
"taxAmount": 5.0,
"notes": "sample string 6",
"terms": "sample string 7",
"items": [
{
"description": "sample string 1",
"quantity": 2.0,
"unitPrice": 3.0
},
{
"description": "sample string 1",
"quantity": 2.0,
"unitPrice": 3.0
}
]
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json
Sample:
Sample not available.