POST api/IM/ImportSigleAccount

Request Information

URI Parameters

None.

Body Parameters

SigleAccount_Par
NameDescriptionTypeAdditional information
Identifier

string

Required

Nick

string

Required

FaceUrl

string

Required

Request Formats

application/json, text/json

Sample:
{
  "Identifier": "sample string 1",
  "Nick": "sample string 2",
  "FaceUrl": "sample string 3"
}

application/xml, text/xml

Sample:
<SigleAccount_Par xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BPMS.OpenApi.Model.IM.ParameterModel">
  <FaceUrl>sample string 3</FaceUrl>
  <Identifier>sample string 1</Identifier>
  <Nick>sample string 2</Nick>
</SigleAccount_Par>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'SigleAccount_Par'.

Response Information

Resource Description

ApiResult
NameDescriptionTypeAdditional information
code

integer

None.

msg

string

None.

errMsg

string

None.

data

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "code": 1,
  "msg": "sample string 2",
  "errMsg": "sample string 3",
  "data": {}
}

application/xml, text/xml

Sample:
<ApiResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BPMS.OpenApi.Model.ManageBase">
  <code>1</code>
  <data />
  <errMsg>sample string 3</errMsg>
  <msg>sample string 2</msg>
</ApiResult>