POST api/customers/{customerId}/group-orders/{groupOrderId}/finalize
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| customerId | integer |
Required |
|
| groupOrderId | integer |
Required |
Body Parameters
FinalizeGroupOrderRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| DeliveryFee | decimal number |
None. |
|
| CouponCode | string |
None. |
|
| Notes | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"deliveryFee": 1.0,
"couponCode": "sample string 2",
"notes": "sample string 3"
}
application/xml, text/xml
Sample:
<FinalizeGroupOrderRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Del.Api.Models.Dtos"> <CouponCode>sample string 2</CouponCode> <DeliveryFee>1</DeliveryFee> <Notes>sample string 3</Notes> </FinalizeGroupOrderRequest>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.