POST api/Ticket/NewRequest

Request Information

URI Parameters

None.

Body Parameters

NewRequestModel
NameDescriptionTypeAdditional information
IdSoftwareLock

integer

None.

IdDepartment

byte

None.

IdProblemType

byte

None.

Title

string

None.

Context

string

None.

Request Formats

application/json, text/json

Sample:
{
  "IdSoftwareLock": 1,
  "IdDepartment": 64,
  "IdProblemType": 64,
  "Title": "sample string 4",
  "Context": "sample string 5"
}

text/xml

Sample:
<NewRequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ZhaniyaClub.Models">
  <Context>sample string 5</Context>
  <IdDepartment>64</IdDepartment>
  <IdProblemType>64</IdProblemType>
  <IdSoftwareLock>1</IdSoftwareLock>
  <Title>sample string 4</Title>
</NewRequestModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

string

Response Formats

application/json, text/json

Sample:
"sample string 1"

text/xml

Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>