POST api/API_LOG_IT/Create
Request Information
URI Parameters
None.
Body Parameters
API_LOG_IT| Name | Description | Type | Additional information |
|---|---|---|---|
| LOGITID | globally unique identifier |
None. |
|
| ROBOID | globally unique identifier |
None. |
|
| DT_COMUNICACAO | date |
None. |
|
| SOURCE_IP | string |
None. |
|
| TIPOLOGID | byte |
None. |
|
| MENSAGEM | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"LOGITID": "840ea6cc-117e-434f-8dc8-a9e4ddb23258",
"ROBOID": "0033da67-0064-4f77-828d-390b283ab53e",
"DT_COMUNICACAO": "2026-03-20T19:03:27.2763694-03:00",
"SOURCE_IP": "sample string 4",
"TIPOLOGID": 64,
"MENSAGEM": "sample string 6"
}
text/plain
Sample:
{"LOGITID":"840ea6cc-117e-434f-8dc8-a9e4ddb23258","ROBOID":"0033da67-0064-4f77-828d-390b283ab53e","DT_COMUNICACAO":"2026-03-20T19:03:27.2763694-03:00","SOURCE_IP":"sample string 4","TIPOLOGID":64,"MENSAGEM":"sample string 6"}
application/xml, text/xml
Sample:
<API_LOG_IT xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Robotizei.RBT_MONITOR.Domain.Entities"> <DT_COMUNICACAO>2026-03-20T19:03:27.2763694-03:00</DT_COMUNICACAO> <LOGITID>840ea6cc-117e-434f-8dc8-a9e4ddb23258</LOGITID> <MENSAGEM>sample string 6</MENSAGEM> <ROBOID>0033da67-0064-4f77-828d-390b283ab53e</ROBOID> <SOURCE_IP>sample string 4</SOURCE_IP> <TIPOLOGID>64</TIPOLOGID> </API_LOG_IT>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
DataResultModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Success | boolean |
None. |
|
| Message | string |
None. |
|
| Detail | string |
None. |
|
| Total | integer |
None. |
|
| ID_OBJECT | globally unique identifier |
None. |
Response Formats
application/json, text/json
Sample:
{
"Success": true,
"Message": "sample string 2",
"Detail": "sample string 3",
"Total": 4,
"ID_OBJECT": "9294203a-82fd-495a-b952-a0c84d7fb143"
}
text/plain
Sample:
{"Success":true,"Message":"sample string 2","Detail":"sample string 3","Total":4,"ID_OBJECT":"9294203a-82fd-495a-b952-a0c84d7fb143"}
application/xml, text/xml
Sample:
<DataResultModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Robotizei.RBT_MONITOR.Domain.Model"> <Detail>sample string 3</Detail> <ID_OBJECT>9294203a-82fd-495a-b952-a0c84d7fb143</ID_OBJECT> <Message>sample string 2</Message> <Success>true</Success> <Total>4</Total> </DataResultModel>