POST bo/users
Request Information
URI Parameters
None.
Body Parameters
m_user_create| Name | Description | Type | Additional information | 
|---|---|---|---|
| BoothId | Collection of integer | 
                             None.  | 
                |
| UserRoleId | integer | 
                             None.  | 
                |
| UserFullName | string | 
                                 Required String length: inclusive between 0 and 100  | 
                |
| UserEmail | string | 
                                 String length: inclusive between 0 and 100  | 
                |
| UserUsername | string | 
                                 Required String length: inclusive between 0 and 100  | 
                |
| UserPassword | string | 
                                 Required String length: inclusive between 0 and 255  | 
                
Request Formats
application/json, text/json
            Sample:
        
{
  "BoothId": [
    1,
    2
  ],
  "UserRoleId": 1,
  "UserFullName": "sample string 2",
  "UserEmail": "sample string 3",
  "UserUsername": "sample string 4",
  "UserPassword": "sample string 5"
}
        application/xml, text/xml
            Sample:
        
<m_user_create xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Modules.Models.Backoffice">
  <BoothId xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:int>1</d2p1:int>
    <d2p1:int>2</d2p1:int>
  </BoothId>
  <UserEmail>sample string 3</UserEmail>
  <UserFullName>sample string 2</UserFullName>
  <UserPassword>sample string 5</UserPassword>
  <UserRoleId>1</UserRoleId>
  <UserUsername>sample string 4</UserUsername>
</m_user_create>
        application/x-www-form-urlencoded
            Sample:
    
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
            Sample:
                    
Sample not available.