POST api/v2/member/info/modify
修改信息
Request Information
URI Parameters
None.
Body Parameters
MemberModifyReqContractName | Description | Type | Additional information |
---|---|---|---|
memberguid |
会员guid |
string |
None. |
firstname |
名字 |
string |
None. |
lastname |
姓 |
string |
None. |
title |
称谓 |
string |
None. |
nickname |
昵称 |
string |
None. |
phonearea |
电话区号 |
string |
None. |
phone |
电话 |
string |
None. |
isreceiveemail |
是否愿意接收推送电邮 |
boolean |
None. |
ishasgivenintegral |
是否已经赠送过积分给客户 |
boolean |
None. |
coverpic |
头像 |
string |
None. |
birthday |
生日 |
date |
None. |
Request Formats
application/json, text/json
Sample:
{ "memberguid": "sample string 1", "firstname": "sample string 2", "lastname": "sample string 3", "title": "sample string 4", "nickname": "sample string 5", "phonearea": "sample string 6", "phone": "sample string 7", "isreceiveemail": true, "ishasgivenintegral": true, "coverpic": "sample string 8", "birthday": "2024-12-23T20:09:50.76189+08:00" }
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
修改信息
ReturnResultName | Description | Type | Additional information |
---|---|---|---|
code |
状态码:100成功,其他自定义 |
integer |
None. |
message |
提示消息 |
string |
None. |
Response Formats
application/json, text/json
Sample:
{ "code": 1, "message": "sample string 2" }