POST api/Store/GetStoreItems

Request Information

URI Parameters

None.

Body Parameters

StoreFilter
NameDescriptionTypeAdditional information
Author

string

None.

Institute

string

None.

Subject

string

None.

Pattern

string

None.

Standard

string

None.

Category

integer

None.

Index

integer

None.

PageSize

integer

None.

SortList

Collection of Pair of string [key] and integer [value]

None.

Request Formats

application/json, text/json

Sample:
{
  "Author": "sample string 1",
  "Institute": "sample string 2",
  "Subject": "sample string 3",
  "Pattern": "sample string 4",
  "Standard": "sample string 5",
  "Category": 6,
  "Index": 7,
  "PageSize": 8,
  "SortList": [
    {
      "Key": "sample string 1",
      "Value": 2
    },
    {
      "Key": "sample string 1",
      "Value": 2
    }
  ]
}

application/xml, text/xml

Sample:
<StoreFilter xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TS.STUDY.Models.Store">
  <Author>sample string 1</Author>
  <Category>6</Category>
  <Index>7</Index>
  <Institute>sample string 2</Institute>
  <PageSize>8</PageSize>
  <Pattern>sample string 4</Pattern>
  <SortList xmlns:d2p1="http://schemas.datacontract.org/2004/07/System.Collections.Generic">
    <d2p1:KeyValuePairOfstringint>
      <d2p1:key>sample string 1</d2p1:key>
      <d2p1:value>2</d2p1:value>
    </d2p1:KeyValuePairOfstringint>
    <d2p1:KeyValuePairOfstringint>
      <d2p1:key>sample string 1</d2p1:key>
      <d2p1:value>2</d2p1:value>
    </d2p1:KeyValuePairOfstringint>
  </SortList>
  <Standard>sample string 5</Standard>
  <Subject>sample string 3</Subject>
</StoreFilter>

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.