POST api/CONFIG_PROCESSO/Create

Request Information

URI Parameters

None.

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": "1a1baaeb-a0eb-4ba2-8703-409230c644f5",
  "TIMEOUT_COMUNICACAO_MIN": 2,
  "TIMEOUT_VISIBILIDADE_DIAS": 3
}

text/plain

Sample:
{"PROCESSOID":"1a1baaeb-a0eb-4ba2-8703-409230c644f5","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>1a1baaeb-a0eb-4ba2-8703-409230c644f5</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": "d4cd3ba9-74f0-47b0-95d2-21e3cae5118d"
}

text/plain

Sample:
{"Success":true,"Message":"sample string 2","Detail":"sample string 3","Total":4,"ID_OBJECT":"d4cd3ba9-74f0-47b0-95d2-21e3cae5118d"}

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>d4cd3ba9-74f0-47b0-95d2-21e3cae5118d</ID_OBJECT>
  <Message>sample string 2</Message>
  <Success>true</Success>
  <Total>4</Total>
</DataResultModel>