PUT api/TICKET_REFERENCIA_FILIAL/Edit/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

globally unique identifier

Required

Body Parameters

TICKET_REFERENCIA_FILIAL
NameDescriptionTypeAdditional information
FILIALID

globally unique identifier

None.

NOME

string

None.

EMAIL

string

None.

Request Formats

application/json, text/json

Sample:
{
  "FILIALID": "837d0d97-fbc1-4f75-a3b9-7691f7db83aa",
  "NOME": "sample string 2",
  "EMAIL": "sample string 3"
}

text/plain

Sample:
{"FILIALID":"837d0d97-fbc1-4f75-a3b9-7691f7db83aa","NOME":"sample string 2","EMAIL":"sample string 3"}

application/xml, text/xml

Sample:
<TICKET_REFERENCIA_FILIAL xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Robotizei.RBT_MONITOR.Domain.Entities">
  <EMAIL>sample string 3</EMAIL>
  <FILIALID>837d0d97-fbc1-4f75-a3b9-7691f7db83aa</FILIALID>
  <NOME>sample string 2</NOME>
</TICKET_REFERENCIA_FILIAL>

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": "bc912ed7-33b2-4dd9-ae24-00ff908b2925"
}

text/plain

Sample:
{"Success":true,"Message":"sample string 2","Detail":"sample string 3","Total":4,"ID_OBJECT":"bc912ed7-33b2-4dd9-ae24-00ff908b2925"}

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>bc912ed7-33b2-4dd9-ae24-00ff908b2925</ID_OBJECT>
  <Message>sample string 2</Message>
  <Success>true</Success>
  <Total>4</Total>
</DataResultModel>