POST api/Usuarios/enviarCorreo
Request Information
URI Parameters
None.
Body Parameters
contactObj| Name | Description | Type | Additional information |
|---|---|---|---|
| Nombre | string |
None. |
|
| Correo | string |
None. |
|
| Empresa | string |
None. |
|
| telefono | string |
None. |
|
| Descripcion | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Nombre": "sample string 1",
"Correo": "sample string 2",
"Empresa": "sample string 3",
"telefono": "sample string 4",
"Descripcion": "sample string 5"
}
application/xml, text/xml
Sample:
<contactObj xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EXPU_Backend.Models"> <Correo>sample string 2</Correo> <Descripcion>sample string 5</Descripcion> <Empresa>sample string 3</Empresa> <Nombre>sample string 1</Nombre> <telefono>sample string 4</telefono> </contactObj>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
defaultResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| status | integer |
None. |
|
| message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"status": 1,
"message": "sample string 2"
}
application/xml, text/xml
Sample:
<defaultResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EXPU_Backend.Models"> <message>sample string 2</message> <status>1</status> </defaultResponse>