GET api/Orders/GetRTVByDate?AppId={AppId}&AppKey={AppKey}&RTVDate={RTVDate}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
AppId

string

Default value is

AppKey

string

Default value is

RTVDate

string

Default value is

Body Parameters

None.

Response Information

Resource Description

StandardResponseClassOfRTVListMasterModel
NameDescriptionTypeAdditional information
code

string

None.

msg

string

None.

data

Collection of RTVListMasterModel

None.

Response Formats

application/json, text/json

Sample:
{
  "code": "sample string 1",
  "msg": "sample string 2",
  "data": [
    {
      "Id": 1,
      "RTVNo": 2,
      "RTVDate": "sample string 3",
      "ShopId": "sample string 4",
      "ShopCode": "sample string 5",
      "Supplier": "sample string 6",
      "data": [
        {
          "ProductCode": "sample string 1",
          "ReturnQty": 2.1,
          "ReturnPrice": 3.1
        },
        {
          "ProductCode": "sample string 1",
          "ReturnQty": 2.1,
          "ReturnPrice": 3.1
        }
      ]
    },
    {
      "Id": 1,
      "RTVNo": 2,
      "RTVDate": "sample string 3",
      "ShopId": "sample string 4",
      "ShopCode": "sample string 5",
      "Supplier": "sample string 6",
      "data": [
        {
          "ProductCode": "sample string 1",
          "ReturnQty": 2.1,
          "ReturnPrice": 3.1
        },
        {
          "ProductCode": "sample string 1",
          "ReturnQty": 2.1,
          "ReturnPrice": 3.1
        }
      ]
    }
  ]
}

text/xml

Sample:
<StandardResponseClassOfRTVListMasterModelm2ATiXWe xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EConnect.Models">
  <code>sample string 1</code>
  <data>
    <RTVListMasterModel>
      <Id>1</Id>
      <RTVDate>sample string 3</RTVDate>
      <RTVNo>2</RTVNo>
      <ShopCode>sample string 5</ShopCode>
      <ShopId>sample string 4</ShopId>
      <Supplier>sample string 6</Supplier>
      <data>
        <RTVListDetailModel>
          <ProductCode>sample string 1</ProductCode>
          <ReturnPrice>3.1</ReturnPrice>
          <ReturnQty>2.1</ReturnQty>
        </RTVListDetailModel>
        <RTVListDetailModel>
          <ProductCode>sample string 1</ProductCode>
          <ReturnPrice>3.1</ReturnPrice>
          <ReturnQty>2.1</ReturnQty>
        </RTVListDetailModel>
      </data>
    </RTVListMasterModel>
    <RTVListMasterModel>
      <Id>1</Id>
      <RTVDate>sample string 3</RTVDate>
      <RTVNo>2</RTVNo>
      <ShopCode>sample string 5</ShopCode>
      <ShopId>sample string 4</ShopId>
      <Supplier>sample string 6</Supplier>
      <data>
        <RTVListDetailModel>
          <ProductCode>sample string 1</ProductCode>
          <ReturnPrice>3.1</ReturnPrice>
          <ReturnQty>2.1</ReturnQty>
        </RTVListDetailModel>
        <RTVListDetailModel>
          <ProductCode>sample string 1</ProductCode>
          <ReturnPrice>3.1</ReturnPrice>
          <ReturnQty>2.1</ReturnQty>
        </RTVListDetailModel>
      </data>
    </RTVListMasterModel>
  </data>
  <msg>sample string 2</msg>
</StandardResponseClassOfRTVListMasterModelm2ATiXWe>