POST BaseData/Query
Request Information
URI Parameters
None.
Body Parameters
BaseDataQuery| Name | Description | Type | Additional information |
|---|---|---|---|
| tableName | string |
None. |
|
| columnName | string |
None. |
|
| columnName_EN | string |
None. |
|
| companyName | string |
None. |
|
| type | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"tableName": "sample string 1",
"columnName": "sample string 2",
"columnName_EN": "sample string 3",
"companyName": "sample string 4",
"type": "sample string 5"
}
application/xml, text/xml
Sample:
<BaseDataQuery xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WeldingAPI.Models"> <columnName>sample string 2</columnName> <columnName_EN>sample string 3</columnName_EN> <companyName>sample string 4</companyName> <tableName>sample string 1</tableName> <type>sample string 5</type> </BaseDataQuery>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
BaseResultQueryOfDataTable| Name | Description | Type | Additional information |
|---|---|---|---|
| Success | integer |
None. |
|
| Msg | string |
None. |
|
| DataContent | DataTable |
None. |
Response Formats
application/json, text/json
Sample:
{
"Success": 1,
"Msg": "sample string 2",
"DataContent": null
}
application/xml, text/xml
Sample:
<BaseResultQueryOfDataTableymujubN2 xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WeldingAPI.Models"> <DataContent i:nil="true" /> <Msg>sample string 2</Msg> <Success>1</Success> </BaseResultQueryOfDataTableymujubN2>