GET api/PhraseListEntry?systemName={systemName}&username={username}&password={password}&phraseListId={phraseListId}&phrase={phrase}&comparison={comparison}&offset={offset}&limit={limit}
Gets all phrase list entries for phrase list matching phrase
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
systemName | string |
Required |
|
username | string |
Required |
|
password | string |
Required |
|
phraseListId | integer |
Required |
|
phrase | string |
Required |
|
comparison | string |
Required |
|
offset | integer |
Default value is 0 |
|
limit | integer |
Default value is 0 |
Body Parameters
None.
Response Information
Resource Description
Collection of APIPhraseListEntryName | Description | Type | Additional information |
---|---|---|---|
Id |
Unique identifier |
integer |
None. |
PhraseListId |
Unique identifier of phrase list to which this belongs |
integer |
None. |
Phrase |
Phrase |
string |
None. |
MatchBasis |
Basis used for matching phrase: Exact or Phrase |
string |
None. |
Response Formats
application/json, text/json
Sample:
[ { "id": 1, "phraseListId": 2, "phrase": "sample string 3", "matchBasis": "sample string 4" }, { "id": 1, "phraseListId": 2, "phrase": "sample string 3", "matchBasis": "sample string 4" } ]
application/xml, text/xml
Sample:
<ArrayOfAPIPhraseListEntry xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Rochester.Models"> <APIPhraseListEntry> <Id>1</Id> <MatchBasis>sample string 4</MatchBasis> <Phrase>sample string 3</Phrase> <PhraseListId>2</PhraseListId> </APIPhraseListEntry> <APIPhraseListEntry> <Id>1</Id> <MatchBasis>sample string 4</MatchBasis> <Phrase>sample string 3</Phrase> <PhraseListId>2</PhraseListId> </APIPhraseListEntry> </ArrayOfAPIPhraseListEntry>