PUT api/CONFIG_API/Edit/{id}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id | globally unique identifier |
Required |
Body Parameters
CONFIG_APIName | Description | Type | Additional information |
---|---|---|---|
APIID | globally unique identifier |
None. |
|
RETENCAO_DIAS | integer |
None. |
Request Formats
application/json, text/json
Sample:
{ "APIID": "435c3841-a66c-4eae-b9f1-29859c9a12fc", "RETENCAO_DIAS": 2 }
text/plain
Sample:
{"APIID":"435c3841-a66c-4eae-b9f1-29859c9a12fc","RETENCAO_DIAS":2}
application/xml, text/xml
Sample:
<CONFIG_API xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Robotizei.RBT_MONITOR.Domain.Entities"> <APIID>435c3841-a66c-4eae-b9f1-29859c9a12fc</APIID> <RETENCAO_DIAS>2</RETENCAO_DIAS> </CONFIG_API>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
DataResultModelName | 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": "770c744c-22ee-4b0c-99e5-07621167390d" }
text/plain
Sample:
{"Success":true,"Message":"sample string 2","Detail":"sample string 3","Total":4,"ID_OBJECT":"770c744c-22ee-4b0c-99e5-07621167390d"}
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>770c744c-22ee-4b0c-99e5-07621167390d</ID_OBJECT> <Message>sample string 2</Message> <Success>true</Success> <Total>4</Total> </DataResultModel>