| GET,POST | /config/SearchConfigByType |
|---|
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| ConfigType | body | string | Yes | 配置类型 |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| ConfigModels | form | List<ConfigModel> | Yes | 配置信息列表 |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| ErrorCode | form | int | Yes | 返回编码,200之外的值都表示有错误 |
| ErrorMsg | form | string | Yes | 返回的消息 |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| ID | form | int | Yes | 配置编号 |
| ConfigType | form | string | Yes | 配置类型 |
| ConfigName | form | string | Yes | 配置名称 |
| ConfigValue | form | string | Yes | 值 |
| Remark | form | string | Yes | 备注 |
| CreateBy | form | string | Yes | 创建人 |
| CreateDT | form | DateTime? | Yes | 创建时间 |
| UpdateBy | form | string | Yes | 修改人 |
| UpdateDT | form | DateTime? | Yes | 修改时间 |
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /jsv/reply/SearchConfigTypeRequest HTTP/1.1
Host: bookinglogin.hart-worldwide.com
Content-Type: text/jsv
Content-Length: length
{
ConfigType: String
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
{
ConfigModels:
[
{
ID: 0,
ConfigType: String,
ConfigName: String,
ConfigValue: String,
Remark: String,
CreateBy: String,
CreateDT: 0001-01-01,
UpdateBy: String,
UpdateDT: 0001-01-01
}
],
ErrorCode: 0,
ErrorMsg: String
}