POST api/Testes/CreateUser

Request Information

URI Parameters

None.

Body Parameters

ChatCreateUserModel
NameDescriptionTypeAdditional information
name

string

None.

email

string

None.

password

string

None.

username

string

None.

Request Formats

application/json, text/json

Sample:
{
  "name": "sample string 1",
  "email": "sample string 2",
  "password": "sample string 3",
  "username": "sample string 4"
}

application/xml, text/xml

Sample:
<ChatCreateUserModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GabineteDigital.Services.Models">
  <email>sample string 2</email>
  <name>sample string 1</name>
  <password>sample string 3</password>
  <username>sample string 4</username>
</ChatCreateUserModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

boolean

Response Formats

application/json, text/json

Sample:
true

application/xml, text/xml

Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>