POST UpdateBasketList

Request Information

URI Parameters

None.

Body Parameters

ApiCallForUpdateBasketListModel
NameDescriptionTypeAdditional information
CustomerId

string

None.

DeliveryDate

string

None.

createBy

string

None.

apiCallForPostUpdateQtyModel

Collection of ApiCallForPostUpdateQtyModel

None.

Request Formats

application/json, text/json

Sample:
{
  "CustomerId": "sample string 1",
  "DeliveryDate": "sample string 2",
  "createBy": "sample string 3",
  "apiCallForPostUpdateQtyModel": [
    {
      "DeliveryScheduleId": "sample string 1",
      "ItemId": "sample string 2",
      "Qty": "sample string 3"
    },
    {
      "DeliveryScheduleId": "sample string 1",
      "ItemId": "sample string 2",
      "Qty": "sample string 3"
    }
  ]
}

application/xml, text/xml

Sample:
<ApiCallForUpdateBasketListModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GIROGAAN.API.Models">
  <CustomerId>sample string 1</CustomerId>
  <DeliveryDate>sample string 2</DeliveryDate>
  <apiCallForPostUpdateQtyModel>
    <ApiCallForPostUpdateQtyModel>
      <DeliveryScheduleId>sample string 1</DeliveryScheduleId>
      <ItemId>sample string 2</ItemId>
      <Qty>sample string 3</Qty>
    </ApiCallForPostUpdateQtyModel>
    <ApiCallForPostUpdateQtyModel>
      <DeliveryScheduleId>sample string 1</DeliveryScheduleId>
      <ItemId>sample string 2</ItemId>
      <Qty>sample string 3</Qty>
    </ApiCallForPostUpdateQtyModel>
  </apiCallForPostUpdateQtyModel>
  <createBy>sample string 3</createBy>
</ApiCallForUpdateBasketListModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ServiceResponse
NameDescriptionTypeAdditional information
IsSuccess

boolean

None.

Message

string

None.

Data

Object

None.

Data2

Object

None.

NotificationType

string

None.

CustomReturn

string

None.

Response Formats

application/json, text/json

Sample:
{
  "IsSuccess": true,
  "Message": "sample string 2",
  "Data": {},
  "Data2": {},
  "NotificationType": "sample string 5",
  "CustomReturn": "sample string 6"
}

application/xml, text/xml

Sample:
<ServiceResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GIROGAAN.API.Common">
  <CustomReturn>sample string 6</CustomReturn>
  <Data />
  <Data2 />
  <IsSuccess>true</IsSuccess>
  <Message>sample string 2</Message>
  <NotificationType>sample string 5</NotificationType>
</ServiceResponse>