POST api/Mensajes/EnviarMensaje
Request Information
URI Parameters
None.
Body Parameters
Mensaje| Name | Description | Type | Additional information |
|---|---|---|---|
| Contenido | string |
None. |
|
| TareaIdx | string |
None. |
|
| Chat | string |
None. |
|
| Usuario | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Contenido": "sample string 1",
"TareaIdx": "sample string 2",
"Chat": "sample string 3",
"Usuario": "sample string 4"
}
application/xml, text/xml
Sample:
<Mensaje xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SIDETI.TelegramMessage.Controllers"> <Chat>sample string 3</Chat> <Contenido>sample string 1</Contenido> <TareaIdx>sample string 2</TareaIdx> <Usuario>sample string 4</Usuario> </Mensaje>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Respuesta| Name | Description | Type | Additional information |
|---|---|---|---|
| Estado | boolean |
None. |
|
| Mensaje | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Estado": true,
"Mensaje": "sample string 2"
}
application/xml, text/xml
Sample:
<Respuesta xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SIDETI.TelegramMessage.Controllers"> <Estado>true</Estado> <Mensaje>sample string 2</Mensaje> </Respuesta>