POST api/UserManagement/MergeUser
Merge with business user
Request Information
URI Parameters
None.
Body Parameters
User data required for the merge
MergeUserDtoName | Description | Type | Additional information |
---|---|---|---|
UpprId | string |
None. |
|
IsAccepted | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{ "UpprId": "sample string 1", "IsAccepted": true }
application/xml, text/xml
Sample:
<MergeUserDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/enTT.ZS.Dto.User"> <IsAccepted>true</IsAccepted> <UpprId>sample string 1</UpprId> </MergeUserDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
True if merge is successful, otherwise False.
ResponseOfBooleanName | Description | Type | Additional information |
---|---|---|---|
StatusCode | StatusCode |
None. |
|
Message | string |
None. |
|
Data | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{ "StatusCode": 1000, "Message": "sample string 1", "Data": true }
application/xml, text/xml
Sample:
<ResponseOfboolean xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/enTT.ZS.Dto"> <Data>true</Data> <Message>sample string 1</Message> <Result /> <StatusCode>Success</StatusCode> </ResponseOfboolean>