GET api/employees/view
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
Draw | integer |
None. |
|
Start | integer |
None. |
|
Length | integer |
None. |
|
Order | Collection of DataTableOrder |
None. |
|
Columns | Collection of DataTableColumn |
None. |
|
Search | DataTableSearch |
None. |
Body Parameters
None.
Response Information
Resource Description
DataTableResponseName | Description | Type | Additional information |
---|---|---|---|
draw | integer |
None. |
|
recordsTotal | integer |
None. |
|
recordsFiltered | integer |
None. |
|
data | Collection of Object |
None. |
|
error | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "draw": 1, "recordsTotal": 2, "recordsFiltered": 3, "data": [ {}, {} ], "error": "sample string 4" }
application/xml, text/xml
Sample:
<DataTableResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EvokeAPI.Models.DataTables"> <data xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:anyType /> <d2p1:anyType /> </data> <draw>1</draw> <error>sample string 4</error> <recordsFiltered>3</recordsFiltered> <recordsTotal>2</recordsTotal> </DataTableResponse>