POST api/WarehouseProductSort/GetTableSortingExcel

Request Information

URI Parameters

None.

Body Parameters

TableSortingRequestModel
Name Description Type Additional information
Page

integer

None.

ItemsPerPage

integer

None.

SortBy

string

None.

Reverse

boolean

None.

ServiceProviderId

integer

None.

PickupPointId

integer

None.

TableId

integer

None.

City

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Page": 1,
  "ItemsPerPage": 2,
  "SortBy": "sample string 3",
  "Reverse": true,
  "ServiceProviderId": 1,
  "PickupPointId": 1,
  "TableId": 1,
  "City": "sample string 5"
}

text/html

Sample:
{"Page":1,"ItemsPerPage":2,"SortBy":"sample string 3","Reverse":true,"ServiceProviderId":1,"PickupPointId":1,"TableId":1,"City":"sample string 5"}

application/xml, text/xml

Sample:
<TableSortingRequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DAO.Models.WarehouseProductSort">
  <City>sample string 5</City>
  <ItemsPerPage>2</ItemsPerPage>
  <Page>1</Page>
  <PickupPointId>1</PickupPointId>
  <Reverse>true</Reverse>
  <ServiceProviderId>1</ServiceProviderId>
  <SortBy>sample string 3</SortBy>
  <TableId>1</TableId>
</TableSortingRequestModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Collection of TableSortingViewModel
Name Description Type Additional information
Id

integer

None.

ServiceProviderId

integer

None.

PickupPointId

integer

None.

TableId

integer

None.

SortOrder

integer

None.

City

string

None.

CreatedOn

date

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "ServiceProviderId": 2,
    "PickupPointId": 1,
    "TableId": 3,
    "SortOrder": 4,
    "City": "sample string 5",
    "CreatedOn": "2025-06-28T13:10:30.2682171Z"
  },
  {
    "Id": 1,
    "ServiceProviderId": 2,
    "PickupPointId": 1,
    "TableId": 3,
    "SortOrder": 4,
    "City": "sample string 5",
    "CreatedOn": "2025-06-28T13:10:30.2682171Z"
  }
]

text/html

Sample:
[{"Id":1,"ServiceProviderId":2,"PickupPointId":1,"TableId":3,"SortOrder":4,"City":"sample string 5","CreatedOn":"2025-06-28T13:10:30.2682171Z"},{"Id":1,"ServiceProviderId":2,"PickupPointId":1,"TableId":3,"SortOrder":4,"City":"sample string 5","CreatedOn":"2025-06-28T13:10:30.2682171Z"}]

application/xml, text/xml

Sample:
<ArrayOfTableSortingViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DAO.Models.WarehouseProductSort">
  <TableSortingViewModel>
    <City>sample string 5</City>
    <CreatedOn>2025-06-28T13:10:30.2682171Z</CreatedOn>
    <Id>1</Id>
    <PickupPointId>1</PickupPointId>
    <ServiceProviderId>2</ServiceProviderId>
    <SortOrder>4</SortOrder>
    <TableId>3</TableId>
  </TableSortingViewModel>
  <TableSortingViewModel>
    <City>sample string 5</City>
    <CreatedOn>2025-06-28T13:10:30.2682171Z</CreatedOn>
    <Id>1</Id>
    <PickupPointId>1</PickupPointId>
    <ServiceProviderId>2</ServiceProviderId>
    <SortOrder>4</SortOrder>
    <TableId>3</TableId>
  </TableSortingViewModel>
</ArrayOfTableSortingViewModel>