| 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 .json suffix or ?format=json
To embed the response in a jsonp callback, append ?callback=myCallback
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /json/reply/SearchConfigTypeRequest HTTP/1.1
Host: bookinglogin.hart-worldwide.com
Content-Type: application/json
Content-Length: length
{"ConfigType":"String"}
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length
{"ConfigModels":[{"ID":0,"ConfigType":"String","ConfigName":"String","ConfigValue":"String","Remark":"String","CreateBy":"String","CreateDT":"\/Date(-62135596800000-0000)\/","UpdateBy":"String","UpdateDT":"\/Date(-62135596800000-0000)\/"}],"ErrorCode":0,"ErrorMsg":"String"}