PUT api/customers/{customerId}/group-orders/{groupOrderId}/settings
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| customerId | integer |
Required |
|
| groupOrderId | integer |
Required |
Body Parameters
UpdateGroupOrderSettingsRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| PaymentMode | string |
None. |
|
| DeliveryAddress | string |
None. |
|
| CustomerLat | decimal number |
None. |
|
| CustomerLng | decimal number |
None. |
|
| DeliveryFee | decimal number |
None. |
|
| Notes | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"paymentMode": "sample string 1",
"deliveryAddress": "sample string 2",
"customerLat": 1.0,
"customerLng": 1.0,
"deliveryFee": 1.0,
"notes": "sample string 3"
}
application/xml, text/xml
Sample:
<UpdateGroupOrderSettingsRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Del.Api.Models.Dtos"> <CustomerLat>1</CustomerLat> <CustomerLng>1</CustomerLng> <DeliveryAddress>sample string 2</DeliveryAddress> <DeliveryFee>1</DeliveryFee> <Notes>sample string 3</Notes> <PaymentMode>sample string 1</PaymentMode> </UpdateGroupOrderSettingsRequest>
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.