POST api/IM/DeleteAccount
Request Information
URI Parameters
None.
Body Parameters
DeleteAccount_ParName | Description | Type | Additional information |
---|---|---|---|
DeleteItem | Collection of AccountItem |
None. |
Request Formats
application/json, text/json
Sample:
{ "DeleteItem": [ { "UserID": "sample string 1" }, { "UserID": "sample string 1" } ] }
application/xml, text/xml
Sample:
<DeleteAccount_Par xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BPMS.OpenApi.Model.IM.ParameterModel"> <DeleteItem> <AccountItem> <UserID>sample string 1</UserID> </AccountItem> <AccountItem> <UserID>sample string 1</UserID> </AccountItem> </DeleteItem> </DeleteAccount_Par>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
ApiResultName | Description | Type | Additional 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>