GET api/Lists/GetItemSearchBy?tkn={tkn}&ListGUID={ListGUID}&SearchBy={SearchBy}&Value={Value}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| tkn | string |
Required String length: inclusive between 1 and 50 |
|
| ListGUID | string |
Required String length: inclusive between 5 and 100 |
|
| SearchBy | string |
Required String length: inclusive between 5 and 200 |
|
| Value | string |
Required String length: inclusive between 1 and 200000 |
Body Parameters
None.
Response Information
Resource Description
ListsEntity| Name | Description | Type | Additional information |
|---|---|---|---|
| Name | string |
None. |
|
| ListTypeGUID | string |
None. |
|
| TagUID | string |
None. |
|
| Value | string |
None. |
|
| ExternalID | string |
None. |
|
| Values | Collection of Field |
None. |
Response Formats
application/json, text/json
Sample:
{
"Name": "sample string 1",
"ListTypeGUID": "sample string 2",
"TagUID": "sample string 3",
"Value": "sample string 4",
"ExternalID": "sample string 5",
"Values": [
{
"apiId": "sample string 1",
"Value": {},
"ExternalID": "sample string 3"
},
{
"apiId": "sample string 1",
"Value": {},
"ExternalID": "sample string 3"
}
]
}
application/octet-stream
Sample:
{"Name":"sample string 1","ListTypeGUID":"sample string 2","TagUID":"sample string 3","Value":"sample string 4","ExternalID":"sample string 5","Values":[{"apiId":"sample string 1","Value":{},"ExternalID":"sample string 3"},{"apiId":"sample string 1","Value":{},"ExternalID":"sample string 3"}]}
application/xml, text/xml
Sample:
<ListsEntity xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Name>sample string 1</Name>
<ListTypeGUID>sample string 2</ListTypeGUID>
<TagUID>sample string 3</TagUID>
<Value>sample string 4</Value>
<ExternalID>sample string 5</ExternalID>
<Values>
<Field>
<apiId>sample string 1</apiId>
<Value />
<ExternalID>sample string 3</ExternalID>
</Field>
<Field>
<apiId>sample string 1</apiId>
<Value />
<ExternalID>sample string 3</ExternalID>
</Field>
</Values>
</ListsEntity>