PUT api/CONTROLE_PROCESSO/Edit/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
CONTROLE_PROCESSO| Name | Description | Type | Additional information |
|---|---|---|---|
| PROCESSOID | globally unique identifier |
None. |
|
| TASKID | string |
None. |
|
| TASKTYPE | globally unique identifier |
None. |
|
| DT_CRIACAO | date |
None. |
|
| DT_ATUALIZADO | date |
None. |
|
| ETAPAID | byte |
None. |
|
| TXT_OPT | string |
None. |
|
| FINALIZADO | boolean |
None. |
|
| SUCESSO | boolean |
None. |
|
| VISIVEL | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"PROCESSOID": "8bfc3283-ebe1-4b26-8beb-f9fc19df10c9",
"TASKID": "sample string 2",
"TASKTYPE": "83d86f16-e37a-474c-b1ba-dff8344e4a5c",
"DT_CRIACAO": "2026-03-20T19:15:23.3013353-03:00",
"DT_ATUALIZADO": "2026-03-20T19:15:23.3013353-03:00",
"ETAPAID": 64,
"TXT_OPT": "sample string 7",
"FINALIZADO": true,
"SUCESSO": true,
"VISIVEL": true
}
text/plain
Sample:
{"PROCESSOID":"8bfc3283-ebe1-4b26-8beb-f9fc19df10c9","TASKID":"sample string 2","TASKTYPE":"83d86f16-e37a-474c-b1ba-dff8344e4a5c","DT_CRIACAO":"2026-03-20T19:15:23.3013353-03:00","DT_ATUALIZADO":"2026-03-20T19:15:23.3013353-03:00","ETAPAID":64,"TXT_OPT":"sample string 7","FINALIZADO":true,"SUCESSO":true,"VISIVEL":true}
application/xml, text/xml
Sample:
<CONTROLE_PROCESSO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Robotizei.RBT_MONITOR.Domain.Entities"> <DT_ATUALIZADO>2026-03-20T19:15:23.3013353-03:00</DT_ATUALIZADO> <DT_CRIACAO>2026-03-20T19:15:23.3013353-03:00</DT_CRIACAO> <ETAPAID>64</ETAPAID> <FINALIZADO>true</FINALIZADO> <PROCESSOID>8bfc3283-ebe1-4b26-8beb-f9fc19df10c9</PROCESSOID> <SUCESSO>true</SUCESSO> <TASKID>sample string 2</TASKID> <TASKTYPE>83d86f16-e37a-474c-b1ba-dff8344e4a5c</TASKTYPE> <TXT_OPT>sample string 7</TXT_OPT> <VISIVEL>true</VISIVEL> </CONTROLE_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": "58dc06d6-830d-41ff-a1f6-1df32dbbfb7a"
}
text/plain
Sample:
{"Success":true,"Message":"sample string 2","Detail":"sample string 3","Total":4,"ID_OBJECT":"58dc06d6-830d-41ff-a1f6-1df32dbbfb7a"}
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>58dc06d6-830d-41ff-a1f6-1df32dbbfb7a</ID_OBJECT> <Message>sample string 2</Message> <Success>true</Success> <Total>4</Total> </DataResultModel>