POST api/Personal/MemeberInfo
修改个人会员信息
Request Information
URI Parameters
None.
Body Parameters
MemberInfoChangeParm| Name | Description | Type | Additional information |
|---|---|---|---|
| MemberId |
会员ID |
integer |
Required |
| FName |
姓名 |
string |
Max length: 30 |
| CertiCardType |
证件类型 |
string |
Max length: 1 |
| IdCard |
证件号 |
string |
Max length: 30 |
| Sex |
性别 |
string |
Max length: 1 |
| Mobile |
手机 |
string |
Max length: 20 |
| PosAddress |
地址 |
string |
Max length: 200 |
|
邮箱 |
string |
Max length: 60 |
|
| QQCode |
QQ号码 |
string |
Max length: 20 |
Request Formats
application/json, text/json
Sample:
{
"MemberId": 1,
"FName": "sample string 2",
"CertiCardType": "sample string 3",
"IdCard": "sample string 4",
"Sex": "sample string 5",
"Mobile": "sample string 6",
"PosAddress": "sample string 7",
"Email": "sample string 8",
"QQCode": "sample string 9"
}
application/xml, text/xml
Sample:
<MemberInfoChangeParm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DigitalScience.DataTransfer.Tour.V5.Parm.WebInterface"> <CertiCardType>sample string 3</CertiCardType> <Email>sample string 8</Email> <FName>sample string 2</FName> <IdCard>sample string 4</IdCard> <MemberId>1</MemberId> <Mobile>sample string 6</Mobile> <PosAddress>sample string 7</PosAddress> <QQCode>sample string 9</QQCode> <Sex>sample string 5</Sex> </MemberInfoChangeParm>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
修改个人会员信息
OperationResult| Name | Description | Type | Additional information |
|---|---|---|---|
| errcode |
错误代码 |
integer |
None. |
| errmsg |
错误的描述 |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"errcode": 1,
"errmsg": "sample string 2"
}
application/xml, text/xml
Sample:
<OperationResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DigitalScience.DataTransfer.Tour.V5.Result.WebInterface"> <errcode>1</errcode> <errmsg>sample string 2</errmsg> </OperationResult>