GET List/GetListByDesc?Description={Description}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
Description

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of List
NameDescriptionTypeAdditional information
Id

decimal number

None.

Key1

string

None.

Key2

string

None.

Description

string

None.

Flg

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1.0,
    "Key1": "sample string 2",
    "Key2": "sample string 3",
    "Description": "sample string 4",
    "Flg": 1
  },
  {
    "Id": 1.0,
    "Key1": "sample string 2",
    "Key2": "sample string 3",
    "Description": "sample string 4",
    "Flg": 1
  }
]

application/xml, text/xml

Sample:
<ArrayOfList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SSPLServices.Models">
  <List>
    <Description>sample string 4</Description>
    <Flg>1</Flg>
    <Id>1</Id>
    <Key1>sample string 2</Key1>
    <Key2>sample string 3</Key2>
  </List>
  <List>
    <Description>sample string 4</Description>
    <Flg>1</Flg>
    <Id>1</Id>
    <Key1>sample string 2</Key1>
    <Key2>sample string 3</Key2>
  </List>
</ArrayOfList>