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": "0a881f42-9a21-4d96-8e98-5cda021c03ba",
"TimeFirst": "27.05.2026",
"TimeLast": "27.05.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>0a881f42-9a21-4d96-8e98-5cda021c03ba</SellerId> <Status>1</Status> <TimeFirst>2026-05-27T01:22:44.4066425+03:00</TimeFirst> <TimeLast>2026-05-27T01:22:44.4066425+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.05.2026",
"SellerId": "c789f277-78b3-4a0b-9899-70e6da7fa1d4",
"SellerName": "sample string 5",
"CustomerId": "43d53208-c460-4bb4-a3ff-2c284a374e55",
"CustomerName": "sample string 7",
"CustomerPersonName": "sample string 8"
},
{
"OrderId": 1,
"OrderStatus": 2,
"OrderTime": "27.05.2026",
"SellerId": "c789f277-78b3-4a0b-9899-70e6da7fa1d4",
"SellerName": "sample string 5",
"CustomerId": "43d53208-c460-4bb4-a3ff-2c284a374e55",
"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>43d53208-c460-4bb4-a3ff-2c284a374e55</CustomerId>
<CustomerName>sample string 7</CustomerName>
<CustomerPersonName>sample string 8</CustomerPersonName>
<OrderId>1</OrderId>
<OrderStatus>2</OrderStatus>
<OrderTime>2026-05-27T01:22:44.4221846+03:00</OrderTime>
<SellerId>c789f277-78b3-4a0b-9899-70e6da7fa1d4</SellerId>
<SellerName>sample string 5</SellerName>
</AllOrderDto>
<AllOrderDto>
<CustomerId>43d53208-c460-4bb4-a3ff-2c284a374e55</CustomerId>
<CustomerName>sample string 7</CustomerName>
<CustomerPersonName>sample string 8</CustomerPersonName>
<OrderId>1</OrderId>
<OrderStatus>2</OrderStatus>
<OrderTime>2026-05-27T01:22:44.4221846+03:00</OrderTime>
<SellerId>c789f277-78b3-4a0b-9899-70e6da7fa1d4</SellerId>
<SellerName>sample string 5</SellerName>
</AllOrderDto>
</Orders>
<TotalCount>1</TotalCount>
</GetAllOrdersDto>