PUT api/CONFIG_PROCESSO/Edit/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
CONFIG_PROCESSO| Name | Description | Type | Additional information |
|---|---|---|---|
| PROCESSOID | globally unique identifier |
None. |
|
| TIMEOUT_COMUNICACAO_MIN | integer |
None. |
|
| TIMEOUT_VISIBILIDADE_DIAS | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"PROCESSOID": "a428b827-3242-49e7-ae5c-2c5bf2bf091a",
"TIMEOUT_COMUNICACAO_MIN": 2,
"TIMEOUT_VISIBILIDADE_DIAS": 3
}
text/plain
Sample:
{"PROCESSOID":"a428b827-3242-49e7-ae5c-2c5bf2bf091a","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>a428b827-3242-49e7-ae5c-2c5bf2bf091a</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| 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": "c1f0e100-8699-4aec-9e74-6b54acaca503"
}
text/plain
Sample:
{"Success":true,"Message":"sample string 2","Detail":"sample string 3","Total":4,"ID_OBJECT":"c1f0e100-8699-4aec-9e74-6b54acaca503"}
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>c1f0e100-8699-4aec-9e74-6b54acaca503</ID_OBJECT> <Message>sample string 2</Message> <Success>true</Success> <Total>4</Total> </DataResultModel>