POST api/v1/DataTableSetting_v2/ImportConfigJson

Request Information

URI Parameters

None.

Body Parameters

DataTableSettingParamModel
NameDescriptionTypeAdditional information
PermissionKey

string

None.

TableKey

string

None.

ConfigJson

string

None.

FilterQuery

Dictionary of string [key] and Object [value]

None.

ScreenGUID

string

None.

DocumentWidth

integer

None.

Url

string

None.

OptionConfigsMore

Dictionary of string [key] and Object [value]

None.

QuerySearch

Dictionary of string [key] and Object [value]

None.

IsTestCase

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "PermissionKey": "sample string 1",
  "TableKey": "sample string 2",
  "ConfigJson": "sample string 3",
  "FilterQuery": null,
  "ScreenGUID": "sample string 4",
  "DocumentWidth": 5,
  "Url": "sample string 6",
  "OptionConfigsMore": null,
  "QuerySearch": null,
  "IsTestCase": true
}

application/xml, text/xml

Sample:
<DataTableSettingParamModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ezy.APIService.AppSystemService.Models">
  <DocumentWidth xmlns="http://schemas.datacontract.org/2004/07/Ezy.Module.BaseData.Models">5</DocumentWidth>
  <FilterQuery xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays" i:nil="true" xmlns="http://schemas.datacontract.org/2004/07/Ezy.Module.BaseData.Models" />
  <IsTestCase xmlns="http://schemas.datacontract.org/2004/07/Ezy.Module.BaseData.Models">true</IsTestCase>
  <OptionConfigsMore xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays" i:nil="true" xmlns="http://schemas.datacontract.org/2004/07/Ezy.Module.BaseData.Models" />
  <QuerySearch xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays" i:nil="true" xmlns="http://schemas.datacontract.org/2004/07/Ezy.Module.BaseData.Models" />
  <ScreenGUID xmlns="http://schemas.datacontract.org/2004/07/Ezy.Module.BaseData.Models">sample string 4</ScreenGUID>
  <Url xmlns="http://schemas.datacontract.org/2004/07/Ezy.Module.BaseData.Models">sample string 6</Url>
  <ConfigJson>sample string 3</ConfigJson>
  <PermissionKey>sample string 1</PermissionKey>
  <TableKey>sample string 2</TableKey>
</DataTableSettingParamModel>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'DataTableSettingParamModel'.

Response Information

Resource Description

EzyResultObjectOfString
NameDescriptionTypeAdditional information
Data

string

None.

ExtraData

Dictionary of string [key] and Object [value]

None.

StartTime

decimal number

None.

EndTime

decimal number

None.

TotalMili

decimal number

None.

StatusCode

integer

None.

Msg

string

None.

MsgShowInUI

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Data": "sample string 1",
  "ExtraData": null,
  "StartTime": 2.1,
  "EndTime": 3.1,
  "TotalMili": 4.1,
  "StatusCode": 5,
  "Msg": "sample string 6",
  "MsgShowInUI": "sample string 7"
}

application/xml, text/xml

Sample:
<EzyResultObjectOfstring xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ezy.Module.Library.Message">
  <Msg>sample string 6</Msg>
  <MsgShowInUI>sample string 7</MsgShowInUI>
  <StatusCode>5</StatusCode>
  <Data>sample string 1</Data>
  <EndTime>3.1</EndTime>
  <ExtraData xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays" i:nil="true" />
  <StartTime>2.1</StartTime>
  <TotalMili>4.1</TotalMili>
</EzyResultObjectOfstring>