Returns the list of property sets defined in the system.

Syntax

Visual Basic (declaration)
Public Function GetPropertySetDefinitions( _ 
ByVal AuthenticationTicket as String) as XmlNode

C# (declaration)
public XmlNode GetPropertySetDefinitions( 
string AuthenticationTicket)

Parameters

AuthenticationTicket
    string infoRouter ticket

Return Value

returns xml fragment.
<response success="true" error="">
if success attribute is "true", the results have been received succesfully like the xml sample below.
if success attribute is "false", the error attribute indicates the encountered error.

<response success="true" error="">
  <PropertySets>
    <PropertySet Name="INCOMINGFAX" Caption="Incoming Fax" AppliesToDocuments="TRUE" AppliesToFolders="FALSE" AppliesToUsers="FALSE" SystemUseOnly="FALSE">
      <DomainRestrictions Global="TRUE" />
    </PropertySet>
    <PropertySet Name="INVOICE" Caption="Invoice" AppliesToDocuments="TRUE" AppliesToFolders="FALSE" AppliesToUsers="FALSE" SystemUseOnly="FALSE">
      <DomainRestrictions Global="TRUE" />
    </PropertySet>
    <PropertySet Name="LETTER" Caption="Letter" AppliesToDocuments="TRUE" AppliesToFolders="TRUE" AppliesToUsers="FALSE" SystemUseOnly="FALSE">
      <DomainRestrictions Global="TRUE" />
    </PropertySet>
    <PropertySet Name="OPENPOSITIONS" Caption="Open Position Postings" AppliesToDocuments="TRUE" AppliesToFolders="FALSE" AppliesToUsers="FALSE" SystemUseOnly="FALSE">
      <DomainRestrictions Global="FALSE">
        <Domain Name="Human Resources" />
      </DomainRestrictions>
    </PropertySet>
    <PropertySet Name="SYSTBL_EMAIL" Caption="EMAIL DOCUMENT" AppliesToDocuments="TRUE" AppliesToFolders="FALSE" AppliesToUsers="FALSE" SystemUseOnly="TRUE">
      <DomainRestrictions Global="TRUE" />
    </PropertySet>
  </PropertySets>
</response>