POST api/appUsuario/v1/Usuario/Cadastrar/Padrao
Request Information
URI Parameters
None.
Body Parameters
UsuarioPadraoCreateParam| Name | Description | Type | Additional information |
|---|---|---|---|
| string |
None. |
||
| Senha | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Email": "sample string 1",
"Senha": "sample string 2"
}
application/xml, text/xml
Sample:
<UsuarioPadraoCreateParam xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GT.Core.Parametro.AppUsuario"> <Email>sample string 1</Email> <Senha>sample string 2</Senha> </UsuarioPadraoCreateParam>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
UsuarioPadraoCreateModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| string |
Required String length: inclusive between 0 and 200 |
||
| Senha | string |
Required String length: inclusive between 0 and 15 |
Response Formats
application/json, text/json
Sample:
{
"Id": 1,
"Email": "sample string 2",
"Senha": "sample string 3"
}
application/xml, text/xml
Sample:
<UsuarioPadraoCreateModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GT.Model.AppUsuario"> <Email>sample string 2</Email> <Id>1</Id> <Senha>sample string 3</Senha> </UsuarioPadraoCreateModel>