POST api/SupportRequest/AddAction

Request Information

URI Parameters

None.

Body Parameters

SupportRequestActionAddDto
NameDescriptionTypeAdditional information
SupportRequestStatus

SupportRequestStatus

None.

Description

string

None.

Solution

string

None.

IsSolved

boolean

None.

SolvedDate

date

None.

SupportRequestID

globally unique identifier

None.

CompanyID

globally unique identifier

None.

Request Formats

application/json, text/json

Sample:
{
  "supportRequestStatus": 1,
  "description": "sample string 1",
  "solution": "sample string 2",
  "isSolved": true,
  "solvedDate": "2025-05-24T14:35:11.0502667+03:00",
  "supportRequestID": "b0ec9a41-3a36-445c-8ace-dafbc3bde49c",
  "companyID": "87cf27a8-41cc-48a4-ad29-f005cc9e522c"
}

application/xml, text/xml

Sample:
<SupportRequestActionAddDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TP.TulTrack.Core.Service.DTOs">
  <CompanyID>87cf27a8-41cc-48a4-ad29-f005cc9e522c</CompanyID>
  <Description>sample string 1</Description>
  <IsSolved>true</IsSolved>
  <Solution>sample string 2</Solution>
  <SolvedDate>2025-05-24T14:35:11.0502667+03:00</SolvedDate>
  <SupportRequestID>b0ec9a41-3a36-445c-8ace-dafbc3bde49c</SupportRequestID>
  <SupportRequestStatus>Wait</SupportRequestStatus>
</SupportRequestActionAddDto>

application/x-www-form-urlencoded

Sample:

Sample not available.

text/html

Sample:
{"supportRequestStatus":1,"description":"sample string 1","solution":"sample string 2","isSolved":true,"solvedDate":"2025-05-24T14:35:11.0502667+03:00","supportRequestID":"b0ec9a41-3a36-445c-8ace-dafbc3bde49c","companyID":"87cf27a8-41cc-48a4-ad29-f005cc9e522c"}

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml, text/html

Sample:

Sample not available.