POST api/AppChat
Request Information
URI Parameters
None.
Body Parameters
MensagemChatModel| Name | Description | Type | Additional information |
|---|---|---|---|
| UsuarioId | globally unique identifier |
None. |
|
| UsuarioNome | string |
None. |
|
| Texto | string |
None. |
|
| DataHora | date |
None. |
|
| UsuarioCriadorId | globally unique identifier |
None. |
|
| Id | globally unique identifier |
None. |
|
| ClienteId | globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{
"UsuarioId": "ba257034-4a66-44bd-ad79-6f9f2aca615c",
"UsuarioNome": "sample string 2",
"Texto": "sample string 3",
"DataHora": "2026-06-13T05:31:22.5080174-03:00",
"UsuarioCriadorId": "10e71c6b-7782-493e-a729-d2eda43a83a5",
"Id": "3aadb147-16a0-4484-bfe0-c1e4be49b34f",
"ClienteId": "9535134e-b984-4c93-b988-e56f8985e73c"
}
application/xml, text/xml
Sample:
<MensagemChatModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Softbyte.ProjetoViver.API.Models"> <DataHora>2026-06-13T05:31:22.5080174-03:00</DataHora> <Id>3aadb147-16a0-4484-bfe0-c1e4be49b34f</Id> <Texto>sample string 3</Texto> <UsuarioId>ba257034-4a66-44bd-ad79-6f9f2aca615c</UsuarioId> <UsuarioNome>sample string 2</UsuarioNome> </MensagemChatModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |