POST api/integration/BoughtOrderList

Request Information

URI Parameters

None.

Body Parameters

BoughtOrderListRQ
NameDescriptionTypeAdditional information
Sayfa

integer

None.

OrderStatus

OrderStatusEnum

None.

OrderCount

integer

None.

Keyword

string

None.

SortField

string

None.

SortDirection

integer

None.

Offset

integer

None.

PageSize

integer

None.

IpAddress

string

None.

Source

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Sayfa": 1,
  "OrderStatus": 0,
  "OrderCount": 2,
  "Keyword": "sample string 3",
  "SortField": "sample string 4",
  "SortDirection": 5,
  "Offset": 6,
  "PageSize": 7,
  "IpAddress": "sample string 8",
  "Source": "sample string 9"
}

application/xml, text/xml

Sample:
<BoughtOrderListRQ xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EczaneApp.Model.API">
  <IpAddress xmlns="http://schemas.datacontract.org/2004/07/EczaneApp.Model">sample string 8</IpAddress>
  <Source xmlns="http://schemas.datacontract.org/2004/07/EczaneApp.Model">sample string 9</Source>
  <Offset xmlns="http://schemas.datacontract.org/2004/07/EczaneApp.Model">6</Offset>
  <PageSize xmlns="http://schemas.datacontract.org/2004/07/EczaneApp.Model">7</PageSize>
  <SortDirection xmlns="http://schemas.datacontract.org/2004/07/EczaneApp.Model">5</SortDirection>
  <SortField xmlns="http://schemas.datacontract.org/2004/07/EczaneApp.Model">sample string 4</SortField>
  <Keyword>sample string 3</Keyword>
  <OrderCount>2</OrderCount>
  <OrderStatus>KargoBekliyor</OrderStatus>
  <Sayfa>1</Sayfa>
</BoughtOrderListRQ>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ServiceResponseOfBoughtOrderListRS
NameDescriptionTypeAdditional information
Result

BoughtOrderListRS

None.

Success

boolean

None.

ErrorMessage

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Result": {
    "Items": [
      {
        "OrderNumber": "sample string 1",
        "Date": "2025-10-27T18:56:08.7306123+03:00",
        "SellerName": "sample string 3",
        "BuyerName": "sample string 4",
        "TotalPrice": 5.0,
        "ParentOrderId": 6,
        "IsEdited": true,
        "OrderId": 8,
        "Status": 0,
        "StatusText": "sample string 9"
      },
      {
        "OrderNumber": "sample string 1",
        "Date": "2025-10-27T18:56:08.7306123+03:00",
        "SellerName": "sample string 3",
        "BuyerName": "sample string 4",
        "TotalPrice": 5.0,
        "ParentOrderId": 6,
        "IsEdited": true,
        "OrderId": 8,
        "Status": 0,
        "StatusText": "sample string 9"
      }
    ],
    "TotalRecordCount": 1,
    "Offset": 2,
    "PageSize": 3,
    "SortField": "sample string 4",
    "SortDirection": 5
  },
  "Success": true,
  "ErrorMessage": "sample string 2"
}

application/xml, text/xml

Sample:
<ServiceResponseOfBoughtOrderListRS0Iqqofk2 xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EczaneApp.Model">
  <ErrorMessage>sample string 2</ErrorMessage>
  <Success>true</Success>
  <Result xmlns:d2p1="http://schemas.datacontract.org/2004/07/EczaneApp.Model.API">
    <IsSuccess>true</IsSuccess>
    <Message>sample string 7</Message>
    <Items xmlns:d3p1="http://schemas.datacontract.org/2004/07/EczaneApp.Model.Shared">
      <d3p1:OrderListItem>
        <d3p1:BuyerName>sample string 4</d3p1:BuyerName>
        <d3p1:Date>2025-10-27T18:56:08.7306123+03:00</d3p1:Date>
        <d3p1:IsEdited>true</d3p1:IsEdited>
        <d3p1:OrderId>8</d3p1:OrderId>
        <d3p1:OrderNumber>sample string 1</d3p1:OrderNumber>
        <d3p1:ParentOrderId>6</d3p1:ParentOrderId>
        <d3p1:SellerName>sample string 3</d3p1:SellerName>
        <d3p1:Status>KargoBekliyor</d3p1:Status>
        <d3p1:StatusText>sample string 9</d3p1:StatusText>
        <d3p1:TotalPrice>5</d3p1:TotalPrice>
      </d3p1:OrderListItem>
      <d3p1:OrderListItem>
        <d3p1:BuyerName>sample string 4</d3p1:BuyerName>
        <d3p1:Date>2025-10-27T18:56:08.7306123+03:00</d3p1:Date>
        <d3p1:IsEdited>true</d3p1:IsEdited>
        <d3p1:OrderId>8</d3p1:OrderId>
        <d3p1:OrderNumber>sample string 1</d3p1:OrderNumber>
        <d3p1:ParentOrderId>6</d3p1:ParentOrderId>
        <d3p1:SellerName>sample string 3</d3p1:SellerName>
        <d3p1:Status>KargoBekliyor</d3p1:Status>
        <d3p1:StatusText>sample string 9</d3p1:StatusText>
        <d3p1:TotalPrice>5</d3p1:TotalPrice>
      </d3p1:OrderListItem>
    </Items>
    <Offset>2</Offset>
    <PageSize>3</PageSize>
    <SortDirection>5</SortDirection>
    <SortField>sample string 4</SortField>
    <TotalRecordCount>1</TotalRecordCount>
  </Result>
</ServiceResponseOfBoughtOrderListRS0Iqqofk2>