PUT api/API_ALIVE/Edit/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

globally unique identifier

Required

Body Parameters

API_ALIVE
NameDescriptionTypeAdditional 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": "37a5f7e0-7ed1-45bb-8729-2a3e98ade060",
  "ROBOID": "c7fa0ece-c8c3-46ea-942b-aae4483c8e78",
  "DT_COMUNICACAO": "2026-03-20T19:04:54.4432038-03:00",
  "SOURCE_IP": "sample string 4",
  "CLOSE_SESSION": true
}

text/plain

Sample:
{"ALIVEID":"37a5f7e0-7ed1-45bb-8729-2a3e98ade060","ROBOID":"c7fa0ece-c8c3-46ea-942b-aae4483c8e78","DT_COMUNICACAO":"2026-03-20T19:04:54.4432038-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>37a5f7e0-7ed1-45bb-8729-2a3e98ade060</ALIVEID>
  <CLOSE_SESSION>true</CLOSE_SESSION>
  <DT_COMUNICACAO>2026-03-20T19:04:54.4432038-03:00</DT_COMUNICACAO>
  <ROBOID>c7fa0ece-c8c3-46ea-942b-aae4483c8e78</ROBOID>
  <SOURCE_IP>sample string 4</SOURCE_IP>
</API_ALIVE>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

DataResultModel
NameDescriptionTypeAdditional 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": "a5932e69-c98a-43b8-af64-8831d9a50d54"
}

text/plain

Sample:
{"Success":true,"Message":"sample string 2","Detail":"sample string 3","Total":4,"ID_OBJECT":"a5932e69-c98a-43b8-af64-8831d9a50d54"}

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>a5932e69-c98a-43b8-af64-8831d9a50d54</ID_OBJECT>
  <Message>sample string 2</Message>
  <Success>true</Success>
  <Total>4</Total>
</DataResultModel>