POST api/CustomerOrderAmmendment

Request Information

URI Parameters

None.

Body Parameters

CustomerOrderAmendmentSaveModels
NameDescriptionTypeAdditional information
CustomerOrderId

integer

Required

EdiaryCartProducts

Collection of EdiaryCartProductModels

Required

BillingDetails

RegisteredUserBillingDetailsModels

Required

ShippingDetails

ShippingAddressModels

Required

Note

string

Required

Max length: 200

UserId

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "CustomerOrderId": 1,
  "EdiaryCartProducts": [
    {
      "P_Id": 1,
      "P_Quantity": 2,
      "P_PackSize": 3,
      "P_PackSizeId": 4,
      "Is_A_Deal": true,
      "P_Price": 6.0
    },
    {
      "P_Id": 1,
      "P_Quantity": 2,
      "P_PackSize": 3,
      "P_PackSizeId": 4,
      "Is_A_Deal": true,
      "P_Price": 6.0
    }
  ],
  "BillingDetails": {
    "R_Name": "sample string 1",
    "R_EmailId": "sample string 2",
    "R_Mobile": 3,
    "R_Address": "sample string 4",
    "R_Pincode": 5
  },
  "ShippingDetails": {
    "SA_Id": 1,
    "SA_R_Id_FK": 2,
    "SA_Name": "sample string 3",
    "SA_MobileNumber": 4,
    "SA_Email": "sample string 5",
    "SA_Address": "sample string 6",
    "SA_Pincode": 7,
    "SA_Landmark": "sample string 8"
  },
  "Note": "sample string 2",
  "UserId": 3
}

application/xml, text/xml

Sample:
<CustomerOrderAmendmentSaveModels xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/eDairyWebAPI.Models">
  <BillingDetails>
    <R_Address>sample string 4</R_Address>
    <R_EmailId>sample string 2</R_EmailId>
    <R_Mobile>3</R_Mobile>
    <R_Name>sample string 1</R_Name>
    <R_Pincode>5</R_Pincode>
  </BillingDetails>
  <CustomerOrderId>1</CustomerOrderId>
  <EdiaryCartProducts>
    <EdiaryCartProductModels>
      <Is_A_Deal>true</Is_A_Deal>
      <P_Id>1</P_Id>
      <P_PackSize>3</P_PackSize>
      <P_PackSizeId>4</P_PackSizeId>
      <P_Price>6</P_Price>
      <P_Quantity>2</P_Quantity>
    </EdiaryCartProductModels>
    <EdiaryCartProductModels>
      <Is_A_Deal>true</Is_A_Deal>
      <P_Id>1</P_Id>
      <P_PackSize>3</P_PackSize>
      <P_PackSizeId>4</P_PackSizeId>
      <P_Price>6</P_Price>
      <P_Quantity>2</P_Quantity>
    </EdiaryCartProductModels>
  </EdiaryCartProducts>
  <Note>sample string 2</Note>
  <ShippingDetails>
    <SA_Address>sample string 6</SA_Address>
    <SA_Email>sample string 5</SA_Email>
    <SA_Id>1</SA_Id>
    <SA_Landmark>sample string 8</SA_Landmark>
    <SA_MobileNumber>4</SA_MobileNumber>
    <SA_Name>sample string 3</SA_Name>
    <SA_Pincode>7</SA_Pincode>
    <SA_R_Id_FK>2</SA_R_Id_FK>
  </ShippingDetails>
  <UserId>3</UserId>
</CustomerOrderAmendmentSaveModels>

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 'CustomerOrderAmendmentSaveModels'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.