GET common/schemas/search?name={name}&category={category}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
name

string

None.

category

integer

None.

Body Parameters

None.

Response Information

Resource Description

Collection of ListItem
NameDescriptionTypeAdditional information
Key

integer

None.

Value

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Key": 1,
    "Value": "sample string 2"
  },
  {
    "Key": 1,
    "Value": "sample string 2"
  }
]

text/xml

Sample:
<ArrayOfListItem xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Pixfin.DTO">
  <ListItem>
    <Key>1</Key>
    <Value>sample string 2</Value>
  </ListItem>
  <ListItem>
    <Key>1</Key>
    <Value>sample string 2</Value>
  </ListItem>
</ArrayOfListItem>