POST api/User/AssignRoleToUser
Request Information
URI Parameters
None.
Body Parameters
AssignRoleToUserModel| Name | Description | Type | Additional information |
|---|---|---|---|
| UserID | integer |
Required |
|
| RoleIDList | Collection of integer |
None. |
|
| CreatedByUserID | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"UserID": 1,
"RoleIDList": [
1,
2
],
"CreatedByUserID": 2
}
application/xml, text/xml
Sample:
<AssignRoleToUserModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/POS.DTO.DataModel">
<CreatedByUserID>2</CreatedByUserID>
<RoleIDList xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:long>1</d2p1:long>
<d2p1:long>2</d2p1:long>
</RoleIDList>
<UserID>1</UserID>
</AssignRoleToUserModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResponseDetail| Name | Description | Type | Additional information |
|---|---|---|---|
| ResponseCode | integer |
None. |
|
| ResponseText | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"ResponseCode": 1,
"ResponseText": "sample string 2"
}
application/xml, text/xml
Sample:
<ResponseDetail xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/POS.DTO.DataModel"> <ResponseCode>1</ResponseCode> <ResponseText>sample string 2</ResponseText> </ResponseDetail>