POST api/jobApi/getJobListByStatusServerSide
Request Information
URI Parameters
None.
Body Parameters
DataTablesRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| draw | integer |
None. |
|
| start | integer |
None. |
|
| length | integer |
None. |
|
| search | DTValue |
None. |
|
| order | Collection of DTOrder |
None. |
|
| columns | Collection of DTColumn |
None. |
|
| jobStatusId | integer |
None. |
|
| companyId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"draw": 1,
"start": 2,
"length": 3,
"search": {
"value": "sample string 1",
"regex": true
},
"order": [
{
"column": 1,
"dir": "sample string 2"
},
{
"column": 1,
"dir": "sample string 2"
}
],
"columns": [
{
"data": "sample string 1",
"name": "sample string 2",
"searchable": true,
"orderable": true,
"search": {
"value": "sample string 1",
"regex": true
}
},
{
"data": "sample string 1",
"name": "sample string 2",
"searchable": true,
"orderable": true,
"search": {
"value": "sample string 1",
"regex": true
}
}
],
"jobStatusId": 4,
"companyId": 5
}
application/xml, text/xml
Sample:
<DataTablesRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/vtechApi.Models">
<columns>
<DTColumn>
<data>sample string 1</data>
<name>sample string 2</name>
<orderable>true</orderable>
<search>
<regex>true</regex>
<value>sample string 1</value>
</search>
<searchable>true</searchable>
</DTColumn>
<DTColumn>
<data>sample string 1</data>
<name>sample string 2</name>
<orderable>true</orderable>
<search>
<regex>true</regex>
<value>sample string 1</value>
</search>
<searchable>true</searchable>
</DTColumn>
</columns>
<companyId>5</companyId>
<draw>1</draw>
<jobStatusId>4</jobStatusId>
<length>3</length>
<order>
<DTOrder>
<column>1</column>
<dir>sample string 2</dir>
</DTOrder>
<DTOrder>
<column>1</column>
<dir>sample string 2</dir>
</DTOrder>
</order>
<search>
<regex>true</regex>
<value>sample string 1</value>
</search>
<start>2</start>
</DataTablesRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.