Returns the user defined keywords of the document in the specified path.

Syntax

Visual Basic (declaration)
Public Function GetDocumentKeywords( _ 
ByVal AuthenticationTicket as String, _ ByVal Path as String) as XmlNode

C# (declaration)
public XmlNode GetDocumentKeywords( 
string AuthenticationTicket, string Path)

Parameters

AuthenticationTicket
    string infoRouter ticket
Path
    string Path of the document

Return Value

returns xml fragment.
<response success="true" error="">
if success attribute is "true", the document keywords has been returned like the sample below.
if success attribute is "false", the error attribute indicates the encountered
error.

<response success="true" error="">
  <Keywords>acme,cableware,fiber,Scoop</Keywords>
</response>

Remarks

The caller must have at least "Read" permissions on the document or must be the owner of the document.