POST Plat/CustomerUpdate

请求信息

URI 参数

None.

Body 参数

UpdateCustomerParameter
名称描述类型附加信息
Id

globally unique identifier

None.

AppSource

integer

None.

Name

string

None.

AccountType

integer

None.

IsBan

boolean

None.

IdCard

string

None.

RealName

string

None.

请求格式

application/json, text/json

Sample:
{
  "Id": "ff8960bb-a869-46f2-93b2-38f80c1568ed",
  "AppSource": 2,
  "Name": "sample string 3",
  "AccountType": 4,
  "IsBan": true,
  "IdCard": "sample string 6",
  "RealName": "sample string 7"
}

application/xml, text/xml

Sample:
<UpdateCustomerParameter xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UDenCloudProject.Model.ParameterModels">
  <AccountType>4</AccountType>
  <AppSource>2</AppSource>
  <Id>ff8960bb-a869-46f2-93b2-38f80c1568ed</Id>
  <IdCard>sample string 6</IdCard>
  <IsBan>true</IsBan>
  <Name>sample string 3</Name>
  <RealName>sample string 7</RealName>
</UpdateCustomerParameter>

application/x-www-form-urlencoded

Sample:

Sample not available.

响应信息

资源描述

ApiJsonBaseOfObject
名称描述类型附加信息
Result

boolean

None.

Message

string

None.

State

integer

None.

BizData

Object

None.

响应格式

application/json, text/json

Sample:
{
  "Result": true,
  "Message": "sample string 2",
  "State": 3,
  "BizData": {}
}

application/xml, text/xml

Sample:
<ApiJsonBaseOfanyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UDenCloudProject.API.Models">
  <BizData />
  <Message>sample string 2</Message>
  <Result>true</Result>
  <State>3</State>
</ApiJsonBaseOfanyType>