POST api/admin/support_requests/v1/all

Request Information

URI Parameters

None.

Body Parameters

SupportFilter
NameDescriptionTypeAdditional information
NOFILTER

boolean

None.

status_filter

boolean

None.

school_filter

boolean

None.

date_filter

boolean

None.

status_ids

Collection of integer

None.

department_ids

Collection of integer

None.

start_date

date

None.

end_date

date

None.

unseen

boolean

None.

page

integer

None.

load

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "NOFILTER": true,
  "status_filter": true,
  "school_filter": true,
  "date_filter": true,
  "status_ids": [
    1,
    2
  ],
  "department_ids": [
    1,
    2
  ],
  "start_date": "2025-12-06T04:30:13.3183613+00:00",
  "end_date": "2025-12-06T04:30:13.3183613+00:00",
  "unseen": true,
  "page": 8,
  "load": 9
}

application/xml, text/xml

Sample:
<SupportFilter xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Stocks.Controllers">
  <NOFILTER>true</NOFILTER>
  <date_filter>true</date_filter>
  <department_ids xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:int>1</d2p1:int>
    <d2p1:int>2</d2p1:int>
  </department_ids>
  <end_date>2025-12-06T04:30:13.3183613+00:00</end_date>
  <load>9</load>
  <page>8</page>
  <school_filter>true</school_filter>
  <start_date>2025-12-06T04:30:13.3183613+00:00</start_date>
  <status_filter>true</status_filter>
  <status_ids xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:int>1</d2p1:int>
    <d2p1:int>2</d2p1:int>
  </status_ids>
  <unseen>true</unseen>
</SupportFilter>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.