PUT api/CONFIG_PROCESSO/Edit/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

globally unique identifier

Required

Body Parameters

CONFIG_PROCESSO
NameDescriptionTypeAdditional information
PROCESSOID

globally unique identifier

None.

TIMEOUT_COMUNICACAO_MIN

integer

None.

TIMEOUT_VISIBILIDADE_DIAS

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "PROCESSOID": "ed519bbd-138f-4379-b7d6-8a2b365cfb2b",
  "TIMEOUT_COMUNICACAO_MIN": 2,
  "TIMEOUT_VISIBILIDADE_DIAS": 3
}

text/plain

Sample:
{"PROCESSOID":"ed519bbd-138f-4379-b7d6-8a2b365cfb2b","TIMEOUT_COMUNICACAO_MIN":2,"TIMEOUT_VISIBILIDADE_DIAS":3}

application/xml, text/xml

Sample:
<CONFIG_PROCESSO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Robotizei.RBT_MONITOR.Domain.Entities">
  <PROCESSOID>ed519bbd-138f-4379-b7d6-8a2b365cfb2b</PROCESSOID>
  <TIMEOUT_COMUNICACAO_MIN>2</TIMEOUT_COMUNICACAO_MIN>
  <TIMEOUT_VISIBILIDADE_DIAS>3</TIMEOUT_VISIBILIDADE_DIAS>
</CONFIG_PROCESSO>

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": "41edaea7-2af7-4869-8969-636e7a86830a"
}

text/plain

Sample:
{"Success":true,"Message":"sample string 2","Detail":"sample string 3","Total":4,"ID_OBJECT":"41edaea7-2af7-4869-8969-636e7a86830a"}

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>41edaea7-2af7-4869-8969-636e7a86830a</ID_OBJECT>
  <Message>sample string 2</Message>
  <Success>true</Success>
  <Total>4</Total>
</DataResultModel>