POST api/Support/LoadSupportList

Request Information

URI Parameters

None.

Body Parameters

SupportViewModel
NameDescriptionTypeAdditional information
supportmasterid

integer

None.

supportcode

string

None.

logininfoid

integer

None.

ticketsupportpriorityid

integer

None.

ticketsupportpriority

string

None.

ticketstatusid

integer

None.

ticketstatus

string

None.

ticketsupportsubject

string

None.

ticketsupportdescription

string

None.

supportdate

date

None.

Request Formats

application/json, text/json

Sample:
{
  "supportmasterid": 1,
  "supportcode": "sample string 2",
  "logininfoid": 3,
  "ticketsupportpriorityid": 4,
  "ticketsupportpriority": "sample string 5",
  "ticketstatusid": 6,
  "ticketstatus": "sample string 7",
  "ticketsupportsubject": "sample string 8",
  "ticketsupportdescription": "sample string 9",
  "supportdate": "2025-12-09T17:03:46.9453186+05:30"
}

application/xml, text/xml

Sample:
<SupportViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/selfhatch.Models">
  <logininfoid>3</logininfoid>
  <supportcode>sample string 2</supportcode>
  <supportdate>2025-12-09T17:03:46.9453186+05:30</supportdate>
  <supportmasterid>1</supportmasterid>
  <ticketstatus>sample string 7</ticketstatus>
  <ticketstatusid>6</ticketstatusid>
  <ticketsupportdescription>sample string 9</ticketsupportdescription>
  <ticketsupportpriority>sample string 5</ticketsupportpriority>
  <ticketsupportpriorityid>4</ticketsupportpriorityid>
  <ticketsupportsubject>sample string 8</ticketsupportsubject>
</SupportViewModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

HttpResultViewModel
NameDescriptionTypeAdditional information
status

boolean

None.

message

string

None.

data

Object

None.

errorCode

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "status": true,
  "message": "sample string 2",
  "data": {},
  "errorCode": 4
}

application/xml, text/xml

Sample:
<HttpResultViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/selfhatch.Models">
  <data />
  <errorCode>4</errorCode>
  <message>sample string 2</message>
  <status>true</status>
</HttpResultViewModel>