POST api/Order/GetOrders
Siparis Olustur
Request Information
URI Parameters
None.
Body Parameters
GetAllOrdersInput| Name | Description | Type | Additional information |
|---|---|---|---|
| SecurityKey | string |
None. |
|
| Page | integer |
None. |
|
| SellerId | globally unique identifier |
None. |
|
| TimeFirst | date |
None. |
|
| TimeLast | date |
None. |
|
| Status | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"SecurityKey": "sample string 1",
"Page": 1,
"SellerId": "8c15d5fe-871b-4bfa-b620-82fb393f31d2",
"TimeFirst": "27.01.2026",
"TimeLast": "27.01.2026",
"Status": 1
}
text/xml
Sample:
<GetAllOrdersInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BiCay.Services.OrderServices.Dtos"> <Page>1</Page> <SecurityKey>sample string 1</SecurityKey> <SellerId>8c15d5fe-871b-4bfa-b620-82fb393f31d2</SellerId> <Status>1</Status> <TimeFirst>2026-01-27T04:38:18.3050651+03:00</TimeFirst> <TimeLast>2026-01-27T04:38:18.3050651+03:00</TimeLast> </GetAllOrdersInput>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
GetAllOrdersDto| Name | Description | Type | Additional information |
|---|---|---|---|
| TotalCount | integer |
None. |
|
| Orders | Collection of AllOrderDto |
None. |
Response Formats
application/json, text/json
Sample:
{
"TotalCount": 1,
"Orders": [
{
"OrderId": 1,
"OrderStatus": 2,
"OrderTime": "27.01.2026",
"SellerId": "772f1b6f-bb6e-49c5-bb83-349919d9ac1b",
"SellerName": "sample string 5",
"CustomerId": "8ad41a4e-6662-4a24-a937-155122c95ca7",
"CustomerName": "sample string 7",
"CustomerPersonName": "sample string 8"
},
{
"OrderId": 1,
"OrderStatus": 2,
"OrderTime": "27.01.2026",
"SellerId": "772f1b6f-bb6e-49c5-bb83-349919d9ac1b",
"SellerName": "sample string 5",
"CustomerId": "8ad41a4e-6662-4a24-a937-155122c95ca7",
"CustomerName": "sample string 7",
"CustomerPersonName": "sample string 8"
}
]
}
text/xml
Sample:
<GetAllOrdersDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BiCay.Services.OrderServices.Dtos">
<Orders>
<AllOrderDto>
<CustomerId>8ad41a4e-6662-4a24-a937-155122c95ca7</CustomerId>
<CustomerName>sample string 7</CustomerName>
<CustomerPersonName>sample string 8</CustomerPersonName>
<OrderId>1</OrderId>
<OrderStatus>2</OrderStatus>
<OrderTime>2026-01-27T04:38:18.3050651+03:00</OrderTime>
<SellerId>772f1b6f-bb6e-49c5-bb83-349919d9ac1b</SellerId>
<SellerName>sample string 5</SellerName>
</AllOrderDto>
<AllOrderDto>
<CustomerId>8ad41a4e-6662-4a24-a937-155122c95ca7</CustomerId>
<CustomerName>sample string 7</CustomerName>
<CustomerPersonName>sample string 8</CustomerPersonName>
<OrderId>1</OrderId>
<OrderStatus>2</OrderStatus>
<OrderTime>2026-01-27T04:38:18.3050651+03:00</OrderTime>
<SellerId>772f1b6f-bb6e-49c5-bb83-349919d9ac1b</SellerId>
<SellerName>sample string 5</SellerName>
</AllOrderDto>
</Orders>
<TotalCount>1</TotalCount>
</GetAllOrdersDto>