PUT api/customers/{customerId}/group-orders/{groupOrderId}/settings

Request Information

URI Parameters

NameDescriptionTypeAdditional information
customerId

integer

Required

groupOrderId

integer

Required

Body Parameters

UpdateGroupOrderSettingsRequest
NameDescriptionTypeAdditional 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:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'UpdateGroupOrderSettingsRequest'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.