GET api/PhraseListEntry/{id}?systemName={systemName}&username={username}&password={password}
Gets a specific phrase list entry
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id | integer |
Required |
|
systemName | string |
Required |
|
username | string |
Required |
|
password | string |
Required |
Body Parameters
None.
Response Information
Resource Description
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" }
application/xml, text/xml
Sample:
<APIPhraseListEntry xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Rochester.Models"> <Id>1</Id> <MatchBasis>sample string 4</MatchBasis> <Phrase>sample string 3</Phrase> <PhraseListId>2</PhraseListId> </APIPhraseListEntry>