POST api/UploadParamTranscoding/Upload

Request Information

URI Parameters

None.

Body Parameters

UploadParamTranscodingRequestModel
NameDescriptionTypeAdditional information
LanguageCode

string

None.

FileName

string

None.

CSVLines

string

None.

User

string

None.

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:
{
  "LanguageCode": "sample string 1",
  "FileName": "sample string 2",
  "CSVLines": "sample string 3",
  "User": "sample string 4",
  "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": 5,
  "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": 6,
  "length": 7,
  "search": {
    "value": "sample string 1",
    "regex": true
  }
}

Response Information

Resource Description

UploadParamTranscodingResponseModel
NameDescriptionTypeAdditional information
ResultMessage

string

None.

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.

Response Formats

application/json, text/json

Sample:
{
  "ResultMessage": "sample string 1",
  "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": 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
      }
    }
  ],
  "order": [
    {
      "column": 1,
      "dir": "sample string 2"
    },
    {
      "column": 1,
      "dir": "sample string 2"
    }
  ],
  "start": 3,
  "length": 4,
  "search": {
    "value": "sample string 1",
    "regex": true
  }
}