PUT api/API_LOG_IT/Edit/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

globally unique identifier

Required

Body Parameters

API_LOG_IT
NameDescriptionTypeAdditional 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": "03c70d52-e2b1-43e0-90d8-6bcc7ed12f16",
  "ROBOID": "825d567a-2bc8-4aa8-b353-6a499ca1c859",
  "DT_COMUNICACAO": "2025-12-12T16:00:59.1648117-03:00",
  "SOURCE_IP": "sample string 4",
  "TIPOLOGID": 64,
  "MENSAGEM": "sample string 6"
}

text/plain

Sample:
{"LOGITID":"03c70d52-e2b1-43e0-90d8-6bcc7ed12f16","ROBOID":"825d567a-2bc8-4aa8-b353-6a499ca1c859","DT_COMUNICACAO":"2025-12-12T16:00:59.1648117-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>2025-12-12T16:00:59.1648117-03:00</DT_COMUNICACAO>
  <LOGITID>03c70d52-e2b1-43e0-90d8-6bcc7ed12f16</LOGITID>
  <MENSAGEM>sample string 6</MENSAGEM>
  <ROBOID>825d567a-2bc8-4aa8-b353-6a499ca1c859</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
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": "eea13770-c39c-4b9f-928e-00d3d457a728"
}

text/plain

Sample:
{"Success":true,"Message":"sample string 2","Detail":"sample string 3","Total":4,"ID_OBJECT":"eea13770-c39c-4b9f-928e-00d3d457a728"}

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>eea13770-c39c-4b9f-928e-00d3d457a728</ID_OBJECT>
  <Message>sample string 2</Message>
  <Success>true</Success>
  <Total>4</Total>
</DataResultModel>