POST api/CognitiveRequest/GetDataForEditPopup
Request Information
URI Parameters
None.
Body Parameters
RequestTable| Name | Description | Type | Additional information |
|---|---|---|---|
| length | integer |
None. |
|
| percentageValue | decimal number |
None. |
|
| N_RESULTS_SKEY | integer |
None. |
|
| N_MAPPING_KEY | integer |
None. |
|
| start | integer |
None. |
|
| iSortCol_0 | integer |
None. |
|
| sSortDir_0 | string |
None. |
|
| sSearch | string |
None. |
|
| requestId | integer |
None. |
|
| requestName | string |
None. |
|
| requestDescription | string |
None. |
|
| requestStatus | string |
None. |
|
| createdDate | Collection of date |
None. |
|
| executionDate | Collection of date |
None. |
|
| inputtype | string |
None. |
|
| execId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"length": 1,
"percentageValue": 2.0,
"N_RESULTS_SKEY": 3,
"N_MAPPING_KEY": 4,
"start": 5,
"iSortCol_0": 6,
"sSortDir_0": "sample string 7",
"sSearch": "sample string 8",
"requestId": 9,
"requestName": "sample string 10",
"requestDescription": "sample string 11",
"requestStatus": "sample string 12",
"createdDate": [
"2025-12-14T20:26:13.037962+00:00",
"2025-12-14T20:26:13.037962+00:00"
],
"executionDate": [
"2025-12-14T20:26:13.037962+00:00",
"2025-12-14T20:26:13.037962+00:00"
],
"inputtype": "sample string 13",
"execId": 14
}
application/xml, text/xml
Sample:
<CognitiveRequestController.RequestTable xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/OauthApi.Controllers">
<N_MAPPING_KEY>4</N_MAPPING_KEY>
<N_RESULTS_SKEY>3</N_RESULTS_SKEY>
<createdDate xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:dateTime>2025-12-14T20:26:13.037962+00:00</d2p1:dateTime>
<d2p1:dateTime>2025-12-14T20:26:13.037962+00:00</d2p1:dateTime>
</createdDate>
<execId>14</execId>
<executionDate xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:dateTime>2025-12-14T20:26:13.037962+00:00</d2p1:dateTime>
<d2p1:dateTime>2025-12-14T20:26:13.037962+00:00</d2p1:dateTime>
</executionDate>
<iSortCol_0>6</iSortCol_0>
<inputtype>sample string 13</inputtype>
<length>1</length>
<percentageValue>2</percentageValue>
<requestDescription>sample string 11</requestDescription>
<requestId>9</requestId>
<requestName>sample string 10</requestName>
<requestStatus>sample string 12</requestStatus>
<sSearch>sample string 8</sSearch>
<sSortDir_0>sample string 7</sSortDir_0>
<start>5</start>
</CognitiveRequestController.RequestTable>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
dtResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| draw | integer |
None. |
|
| recordsTotal | integer |
None. |
|
| recordsFiltered | integer |
None. |
|
| data | DataTable |
None. |
|
| error | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"draw": 1,
"recordsTotal": 2,
"recordsFiltered": 3,
"data": null,
"error": "sample string 4"
}
application/xml, text/xml
Sample:
<dtResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/OauthApi.Controllers"> <data i:nil="true" /> <draw>1</draw> <error>sample string 4</error> <recordsFiltered>3</recordsFiltered> <recordsTotal>2</recordsTotal> </dtResponse>