POST api/SupportRequest/Update
Request Information
URI Parameters
None.
Body Parameters
SupportRequestUpdateDtoName | Description | Type | Additional information |
---|---|---|---|
Code | string |
None. |
|
Title | string |
None. |
|
Description | string |
None. |
|
SupportRequestStatus | SupportRequestStatus |
None. |
|
Solution | string |
None. |
|
IsSolved | boolean |
None. |
|
SolvedDate | date |
None. |
|
ID | globally unique identifier |
Required |
|
CompanyID | globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{ "code": "sample string 1", "title": "sample string 2", "description": "sample string 3", "supportRequestStatus": 1, "solution": "sample string 4", "isSolved": true, "solvedDate": "2025-08-29T12:24:06.3374247+03:00", "id": "0523ec1f-0516-4b24-a4b5-3437e2be9ee1", "companyID": "59624fa0-4b6e-4f00-a956-bd59a9ef8318" }
application/xml, text/xml
Sample:
<SupportRequestUpdateDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TP.TulTrack.Core.Service.DTOs"> <CompanyID>59624fa0-4b6e-4f00-a956-bd59a9ef8318</CompanyID> <ID>0523ec1f-0516-4b24-a4b5-3437e2be9ee1</ID> <Code>sample string 1</Code> <Description>sample string 3</Description> <IsSolved>true</IsSolved> <Solution>sample string 4</Solution> <SolvedDate>2025-08-29T12:24:06.3374247+03:00</SolvedDate> <SupportRequestStatus>Wait</SupportRequestStatus> <Title>sample string 2</Title> </SupportRequestUpdateDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
text/html
Sample:
{"code":"sample string 1","title":"sample string 2","description":"sample string 3","supportRequestStatus":1,"solution":"sample string 4","isSolved":true,"solvedDate":"2025-08-29T12:24:06.3374247+03:00","id":"0523ec1f-0516-4b24-a4b5-3437e2be9ee1","companyID":"59624fa0-4b6e-4f00-a956-bd59a9ef8318"}
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml, text/html
Sample:
Sample not available.