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": "dd44e147-e52c-4704-8276-e70757244ca3",
"TimeFirst": "26.07.2026",
"TimeLast": "26.07.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>dd44e147-e52c-4704-8276-e70757244ca3</SellerId> <Status>1</Status> <TimeFirst>2026-07-26T02:35:29.2602103+03:00</TimeFirst> <TimeLast>2026-07-26T02:35:29.2602103+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": "26.07.2026",
"SellerId": "635d22c8-ed5c-400e-87b4-5b2d25afaab8",
"SellerName": "sample string 5",
"CustomerId": "28922aee-3e87-4450-8f0c-e5449bd066f2",
"CustomerName": "sample string 7",
"CustomerPersonName": "sample string 8"
},
{
"OrderId": 1,
"OrderStatus": 2,
"OrderTime": "26.07.2026",
"SellerId": "635d22c8-ed5c-400e-87b4-5b2d25afaab8",
"SellerName": "sample string 5",
"CustomerId": "28922aee-3e87-4450-8f0c-e5449bd066f2",
"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>28922aee-3e87-4450-8f0c-e5449bd066f2</CustomerId>
<CustomerName>sample string 7</CustomerName>
<CustomerPersonName>sample string 8</CustomerPersonName>
<OrderId>1</OrderId>
<OrderStatus>2</OrderStatus>
<OrderTime>2026-07-26T02:35:29.2602103+03:00</OrderTime>
<SellerId>635d22c8-ed5c-400e-87b4-5b2d25afaab8</SellerId>
<SellerName>sample string 5</SellerName>
</AllOrderDto>
<AllOrderDto>
<CustomerId>28922aee-3e87-4450-8f0c-e5449bd066f2</CustomerId>
<CustomerName>sample string 7</CustomerName>
<CustomerPersonName>sample string 8</CustomerPersonName>
<OrderId>1</OrderId>
<OrderStatus>2</OrderStatus>
<OrderTime>2026-07-26T02:35:29.2602103+03:00</OrderTime>
<SellerId>635d22c8-ed5c-400e-87b4-5b2d25afaab8</SellerId>
<SellerName>sample string 5</SellerName>
</AllOrderDto>
</Orders>
<TotalCount>1</TotalCount>
</GetAllOrdersDto>