POST api/{area}/OEUser/BindAccountCardImage
修改学员牌照片图片
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| area | string |
None. |
Body Parameters
请求参数
AccountBindingModels| Name | Description | Type | Additional information |
|---|---|---|---|
| Sex |
性别 |
string |
None. |
| CompanyName |
公司名称 |
string |
None. |
| AccountCardImage |
学员牌照片 |
string |
None. |
| Id |
Id |
string |
None. |
| AccountId |
用户Id |
string |
None. |
| ShopId |
商城Id |
integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"Sex": "sample string 1",
"CompanyName": "sample string 2",
"AccountCardImage": "sample string 3",
"Id": "sample string 4",
"AccountId": "sample string 5",
"ShopId": 6
}
application/xml, text/xml
Sample:
<AccountBindingModels xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/open.wst.com.Areas.OnlineEducation.Models"> <AccountId xmlns="http://schemas.datacontract.org/2004/07/open.wst.com.Models">sample string 5</AccountId> <Id xmlns="http://schemas.datacontract.org/2004/07/open.wst.com.Models">sample string 4</Id> <ShopId xmlns="http://schemas.datacontract.org/2004/07/open.wst.com.Models">6</ShopId> <AccountCardImage>sample string 3</AccountCardImage> <CompanyName>sample string 2</CompanyName> <Sex>sample string 1</Sex> </AccountBindingModels>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
BaseResultModels| Name | Description | Type | Additional information |
|---|---|---|---|
| errcode |
返回Code(-1请求失败,0请求成功,1调用支付) |
integer |
None. |
| errmsg |
返回提示消息 |
string |
None. |
| url |
返回Url |
string |
None. |
| data |
返回数据 |
string |
None. |
| dataObj |
返回数据1 |
Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"errcode": 1,
"errmsg": "sample string 2",
"url": "sample string 3",
"data": "sample string 4",
"dataObj": {}
}
application/xml, text/xml
Sample:
<BaseResultModels xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/open.wst.com.Models"> <data>sample string 4</data> <dataObj /> <errcode>1</errcode> <errmsg>sample string 2</errmsg> <url>sample string 3</url> </BaseResultModels>