POST api/User/AssignSpecialActionToUser
Request Information
URI Parameters
None.
Body Parameters
AssignSpecialActionToUserModelName | Description | Type | Additional information |
---|---|---|---|
UserID | integer |
Required |
|
ActionStatusModelList | Collection of ActionStatusModel |
None. |
|
CreatedByUserID | integer |
None. |
Request Formats
application/json, text/json
Sample:
{ "UserID": 1, "ActionStatusModelList": [ { "ActionID": 1, "IsAllow": true }, { "ActionID": 1, "IsAllow": true } ], "CreatedByUserID": 2 }
application/xml, text/xml
Sample:
<AssignSpecialActionToUserModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/POS.DTO.DataModel"> <ActionStatusModelList> <ActionStatusModel> <ActionID>1</ActionID> <IsAllow>true</IsAllow> </ActionStatusModel> <ActionStatusModel> <ActionID>1</ActionID> <IsAllow>true</IsAllow> </ActionStatusModel> </ActionStatusModelList> <CreatedByUserID>2</CreatedByUserID> <UserID>1</UserID> </AssignSpecialActionToUserModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResponseDetailName | 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>