POST api/SelectRepositorySector/Get

Request Information

URI Parameters

None.

Body Parameters

GetReportRequestModel
NameDescriptionTypeAdditional information
filter

Dictionary of string [key] and Object [value]

None.

mappings

Dictionary of string [key] and string [value]

None.

additionalFields

Dictionary of string [key] and string [value]

None.

columnHeaders

Collection of string

None.

mandatoryColumns

Collection of integer

None.

Format

ExportFormat

None.

draw

integer

None.

columns

Collection of AlhDataTableServerSideColumnRequestModel

None.

order

Collection of AlhDataTableServerSideOrderModel

None.

start

integer

None.

length

integer

None.

search

AlhDataTableServerSideSearchRequestModel

None.

Request Formats

application/json, text/json

Sample:
{
  "filter": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "mappings": {
    "sample string 1": "sample string 2",
    "sample string 3": "sample string 4"
  },
  "additionalFields": {
    "sample string 1": "sample string 2",
    "sample string 3": "sample string 4"
  },
  "columnHeaders": [
    "sample string 1",
    "sample string 2"
  ],
  "mandatoryColumns": [
    1,
    2
  ],
  "Format": 0,
  "draw": 1,
  "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
      }
    }
  ],
  "order": [
    {
      "column": 1,
      "dir": "sample string 2"
    },
    {
      "column": 1,
      "dir": "sample string 2"
    }
  ],
  "start": 2,
  "length": 3,
  "search": {
    "value": "sample string 1",
    "regex": true
  }
}

Response Information

Resource Description

AlhDataTableServerSideResponseModel
NameDescriptionTypeAdditional information
draw

integer

None.

recordsTotal

integer

None.

recordsFiltered

integer

None.

data

Collection of DbSetModel

None.

ColSums

Dictionary of string [key] and Object [value]

None.

dataType

Type

None.

Response Formats

application/json, text/json

Sample:
{
  "draw": 1,
  "recordsTotal": 2,
  "recordsFiltered": 3,
  "data": [
    {},
    {}
  ],
  "ColSums": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "dataType": null
}