POST api/General/Contacto
Insertar formulario de contactos
Request Information
URI Parameters
None.
Body Parameters
ContactoName | Description | Type | Additional information |
---|---|---|---|
NombreContacto | string |
None. |
|
Correo | string |
None. |
|
Telefono | string |
None. |
|
Asunto | string |
None. |
|
Mensaje | string |
None. |
|
FechaRegistro | date |
None. |
|
Cedula | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "NombreContacto": "sample string 1", "Correo": "sample string 2", "Telefono": "sample string 3", "Asunto": "sample string 4", "Mensaje": "sample string 5", "FechaRegistro": "2024-12-22T21:53:19.8903497-04:00", "Cedula": "sample string 7" }
application/xml, text/xml
Sample:
<Contacto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApi.Core"> <Asunto>sample string 4</Asunto> <Cedula>sample string 7</Cedula> <Correo>sample string 2</Correo> <FechaRegistro>2024-12-22T21:53:19.8903497-04:00</FechaRegistro> <Mensaje>sample string 5</Mensaje> <NombreContacto>sample string 1</NombreContacto> <Telefono>sample string 3</Telefono> </Contacto>
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.