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": "017f2629-bb25-4892-8be9-2f12b7fd07ce",
  "TIMEOUT_COMUNICACAO_MIN": 2,
  "TIMEOUT_VISIBILIDADE_DIAS": 3
}

text/plain

Sample:
{"PROCESSOID":"017f2629-bb25-4892-8be9-2f12b7fd07ce","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>017f2629-bb25-4892-8be9-2f12b7fd07ce</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": "4358dfb0-fb11-439f-9533-2f7050956abd"
}

text/plain

Sample:
{"Success":true,"Message":"sample string 2","Detail":"sample string 3","Total":4,"ID_OBJECT":"4358dfb0-fb11-439f-9533-2f7050956abd"}

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>4358dfb0-fb11-439f-9533-2f7050956abd</ID_OBJECT>
  <Message>sample string 2</Message>
  <Success>true</Success>
  <Total>4</Total>
</DataResultModel>