POST api/API_ALIVE/Create
Request Information
URI Parameters
None.
Body Parameters
API_ALIVE| Name | Description | Type | Additional information |
|---|---|---|---|
| ALIVEID | globally unique identifier |
None. |
|
| ROBOID | globally unique identifier |
None. |
|
| DT_COMUNICACAO | date |
None. |
|
| SOURCE_IP | string |
None. |
|
| CLOSE_SESSION | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"ALIVEID": "e1fe5b34-c89d-4a33-8b60-2d688595f02d",
"ROBOID": "2935897c-8351-4caf-a86e-879a54c70a30",
"DT_COMUNICACAO": "2026-09-18T08:20:25.7862798-03:00",
"SOURCE_IP": "sample string 4",
"CLOSE_SESSION": true
}
text/plain
Sample:
{"ALIVEID":"e1fe5b34-c89d-4a33-8b60-2d688595f02d","ROBOID":"2935897c-8351-4caf-a86e-879a54c70a30","DT_COMUNICACAO":"2026-09-18T08:20:25.7862798-03:00","SOURCE_IP":"sample string 4","CLOSE_SESSION":true}
application/xml, text/xml
Sample:
<API_ALIVE xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Robotizei.RBT_MONITOR.Domain.Entities"> <ALIVEID>e1fe5b34-c89d-4a33-8b60-2d688595f02d</ALIVEID> <CLOSE_SESSION>true</CLOSE_SESSION> <DT_COMUNICACAO>2026-09-18T08:20:25.7862798-03:00</DT_COMUNICACAO> <ROBOID>2935897c-8351-4caf-a86e-879a54c70a30</ROBOID> <SOURCE_IP>sample string 4</SOURCE_IP> </API_ALIVE>
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": "5a714d1e-f168-487f-839e-2ee670b1dbcc"
}
text/plain
Sample:
{"Success":true,"Message":"sample string 2","Detail":"sample string 3","Total":4,"ID_OBJECT":"5a714d1e-f168-487f-839e-2ee670b1dbcc"}
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>5a714d1e-f168-487f-839e-2ee670b1dbcc</ID_OBJECT> <Message>sample string 2</Message> <Success>true</Success> <Total>4</Total> </DataResultModel>