GET api/BasicInformation/GetByUser
根据登录用户获取消息配置
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
InfoResultOfMobileNoticeConfigDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Data | MobileNoticeConfigDto |
None. |
|
| IsSuccess |
是否成功:true:成功,false:失败 |
boolean |
None. |
| Msg |
返回消息 |
string |
None. |
| Extra |
特定信息 |
string |
None. |
| Code |
内部代码:[成功 000000|失败 000001|未登陆/未授权 000002] |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Data": {
"Id": 1,
"Type": 1,
"Configuration": "sample string 2",
"Frequency": 1,
"FrequencyValue": "sample string 3"
},
"IsSuccess": true,
"Msg": "sample string 2",
"Extra": "sample string 3",
"Code": "sample string 4"
}
application/xml, text/xml
Sample:
<InfoResultOfMobileNoticeConfigDto8taVmWcU xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CMS.Core.ShareData">
<Code>sample string 4</Code>
<Extra>sample string 3</Extra>
<IsSuccess>true</IsSuccess>
<Msg>sample string 2</Msg>
<Data xmlns:d2p1="http://schemas.datacontract.org/2004/07/CMS.Domain.Dto">
<d2p1:Configuration>sample string 2</d2p1:Configuration>
<d2p1:Frequency>1</d2p1:Frequency>
<d2p1:FrequencyValue>sample string 3</d2p1:FrequencyValue>
<d2p1:Id>1</d2p1:Id>
<d2p1:Type>1</d2p1:Type>
</Data>
</InfoResultOfMobileNoticeConfigDto8taVmWcU>