PUT api/API_TASK_ADD/Edit/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
API_TASK_ADD| Name | Description | Type | Additional information |
|---|---|---|---|
| TASKADDID | globally unique identifier |
None. |
|
| ROBOID | globally unique identifier |
None. |
|
| DT_COMUNICACAO | date |
None. |
|
| SOURCE_IP | string |
None. |
|
| ETAPAID | byte |
None. |
|
| TASKID | string |
None. |
|
| TASKTYPE | globally unique identifier |
None. |
|
| OPTIONALTEXT1 | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"TASKADDID": "66661159-5054-41c6-986f-5f5883dbf597",
"ROBOID": "cf2cd9b5-ad0f-46dd-9b05-2f7b2ef64c42",
"DT_COMUNICACAO": "2026-02-03T14:42:45.8041041-03:00",
"SOURCE_IP": "sample string 4",
"ETAPAID": 64,
"TASKID": "sample string 6",
"TASKTYPE": "b0da480c-0de3-4a80-bd2e-c86a4d709b6b",
"OPTIONALTEXT1": "sample string 8"
}
text/plain
Sample:
{"TASKADDID":"66661159-5054-41c6-986f-5f5883dbf597","ROBOID":"cf2cd9b5-ad0f-46dd-9b05-2f7b2ef64c42","DT_COMUNICACAO":"2026-02-03T14:42:45.8041041-03:00","SOURCE_IP":"sample string 4","ETAPAID":64,"TASKID":"sample string 6","TASKTYPE":"b0da480c-0de3-4a80-bd2e-c86a4d709b6b","OPTIONALTEXT1":"sample string 8"}
application/xml, text/xml
Sample:
<API_TASK_ADD xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Robotizei.RBT_MONITOR.Domain.Entities"> <DT_COMUNICACAO>2026-02-03T14:42:45.8041041-03:00</DT_COMUNICACAO> <ETAPAID>64</ETAPAID> <OPTIONALTEXT1>sample string 8</OPTIONALTEXT1> <ROBOID>cf2cd9b5-ad0f-46dd-9b05-2f7b2ef64c42</ROBOID> <SOURCE_IP>sample string 4</SOURCE_IP> <TASKADDID>66661159-5054-41c6-986f-5f5883dbf597</TASKADDID> <TASKID>sample string 6</TASKID> <TASKTYPE>b0da480c-0de3-4a80-bd2e-c86a4d709b6b</TASKTYPE> </API_TASK_ADD>
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": "a8c197d0-6841-4fc4-98e9-7c8f879a2522"
}
text/plain
Sample:
{"Success":true,"Message":"sample string 2","Detail":"sample string 3","Total":4,"ID_OBJECT":"a8c197d0-6841-4fc4-98e9-7c8f879a2522"}
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>a8c197d0-6841-4fc4-98e9-7c8f879a2522</ID_OBJECT> <Message>sample string 2</Message> <Success>true</Success> <Total>4</Total> </DataResultModel>