POST api/bo/users

Create User

Request Information

URI Parameters

None.

Body Parameters

m_user_create
NameDescriptionTypeAdditional information
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:
{
  "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/KFA.Modules.Models.Backoffice">
  <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

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.