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": "1a959dc6-615b-4ec4-bb76-14bb3fd5c9d6",
"TimeFirst": "28.03.2026",
"TimeLast": "28.03.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>1a959dc6-615b-4ec4-bb76-14bb3fd5c9d6</SellerId> <Status>1</Status> <TimeFirst>2026-03-28T05:22:24.1771393+03:00</TimeFirst> <TimeLast>2026-03-28T05:22:24.1771393+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": "28.03.2026",
"SellerId": "04901a2f-7065-4302-ad2b-a67f8f4119d4",
"SellerName": "sample string 5",
"CustomerId": "943b7ce4-dd62-49d7-a186-a41d8bc1149f",
"CustomerName": "sample string 7",
"CustomerPersonName": "sample string 8"
},
{
"OrderId": 1,
"OrderStatus": 2,
"OrderTime": "28.03.2026",
"SellerId": "04901a2f-7065-4302-ad2b-a67f8f4119d4",
"SellerName": "sample string 5",
"CustomerId": "943b7ce4-dd62-49d7-a186-a41d8bc1149f",
"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>943b7ce4-dd62-49d7-a186-a41d8bc1149f</CustomerId>
<CustomerName>sample string 7</CustomerName>
<CustomerPersonName>sample string 8</CustomerPersonName>
<OrderId>1</OrderId>
<OrderStatus>2</OrderStatus>
<OrderTime>2026-03-28T05:22:24.1771393+03:00</OrderTime>
<SellerId>04901a2f-7065-4302-ad2b-a67f8f4119d4</SellerId>
<SellerName>sample string 5</SellerName>
</AllOrderDto>
<AllOrderDto>
<CustomerId>943b7ce4-dd62-49d7-a186-a41d8bc1149f</CustomerId>
<CustomerName>sample string 7</CustomerName>
<CustomerPersonName>sample string 8</CustomerPersonName>
<OrderId>1</OrderId>
<OrderStatus>2</OrderStatus>
<OrderTime>2026-03-28T05:22:24.1771393+03:00</OrderTime>
<SellerId>04901a2f-7065-4302-ad2b-a67f8f4119d4</SellerId>
<SellerName>sample string 5</SellerName>
</AllOrderDto>
</Orders>
<TotalCount>1</TotalCount>
</GetAllOrdersDto>