Skip to end of metadata
Go to start of metadata

You are viewing an old version of this content. View the current version.

Compare with Current View Version History

« Previous Version 3 Next »

Activities

Connect to LotusNotes

This activity connects to the specified LotusNotes account and outputs a LotusNotes client connection. 

Activity Parameters

The Connect to LotusNotes activity parameters can be provided by manual inserted values or via IN arguments or variables:

Authentication:

  • Password (password box editor type) (type: string): the mailbox username's password.
  • Password Binding (text box editor type) (type: string): bind to a variable containing the encrypted password. (This parameter is used only when the user wants to send an encripted password from outside the task, for example Flowster Portal).
  • Server Name (text box editor type) (type: string): the lotusnotes server name to connect to. 
  • Username (text box editor type) (type: string): the username for lotusnotes authentication.

The Read Only Output variable are the possible output values that the activity will provide:

  • Connection  (type: object): outputs a Mailbox connection. The Output of this activity should be used as Input for all Connection parameters used for all activities placed under Email category..
 

Execution:

  • the activity will create a connection to the given server, using the provided credentials.

 

 

Disconnect from LotusNotes

This activity disconnects from Lotusnotes account.

Activity Parameters

The Disconnect from LotusNotes activity parameters can be provided by manual inserted values or via IN arguments or variables:

Parameters:

  • Connection (text box editor type) (type: object): the output from the Connect to LotusNotes activity.

 

 

Get Contacts By UNID

This activity connects to the specified LotusNotes account and outputs a LotusNotes client connection. 

Activity Parameters

The Get Contacts By UNID activity parameters can be provided by manual inserted values or via IN arguments or variables:

Authentication:

  • Database (text box editor type) (type: string): the lotusnotes database to return contacts from. 
  • UID (text box editor type) (type: string): the UID to return contacts from. 

The Read Only Output variable are the possible output values that the activity will provide:

  • Company Names (type: list<string>): outputs a list of company names.
  • Hrefs (type: list<string>): outputs a list of hrefs for the specified entry.
  • Servers (type: list<string>): outputs a list of servers.
  • Status (type: boolean): outputs the status for the LotusNotes request.  
  • UNIDs (type: list<string>): outputs a list of UNIDs for the specified contact.
  • Users (type: list<string>): outputs a list of users.
 


In order to extract the values from the output collections (in our case the output is a List(Of String) ), For Each activity should be used to iterate through the entire list and extract all elements OR Get Element From Collection activity to extract a specific element using index: OR   


Execution:

  • the activity will return a list of contacts and extra information using the provided input.

 

Get Document By UNID

This activity gets a document by UNID. 

Activity Parameters

The Get Document By UNID activity parameters can be provided by manual inserted values or via IN arguments or variables:

Authentication:

  • Database (text box editor type) (type: string): the lotusnotes database to return the document info from. 
  • UID (text box editor type) (type: string): the UID. 

The Read Only Output variable are the possible output values that the activity will provide:

  • Created (type: string): outputs the lotusnotes document created date.
  • Machine (type: string): outputs the lotusnotes document machine.
  • MailServer (type: string): outputs the lotusnotes document mailserver.
  • Modified (type: string): outputs the lotusnotes document modified date.
  • Owner (type: string): outputs the lotusnotes document owner.
  • Platform (type: string): outputs the lotusnotes document platform.
  • Status (type: boolean): outputs the status for the lotusnotes request.
 


Execution:

  • the activity will return a list of information about a specified lotusnotes document.

 

 

Get Documents By UNID

This activity gets all documents from the lotusnotes database. 

Activity Parameters

The Get Documents activity parameters can be provided by manual inserted values or via IN arguments or variables:

Authentication:

  • Database (text box editor type) (type: string): the lotusnotes database to return documents from. 

The Read Only Output variable are the possible output values that the activity will provide:

  • Changes (type: list<string>): outputs a list of date changes for the entry. 
  • Status (type: boolean): outputs the status for the lotusnotes request.
  • UNIDS (type: list<string>): outputs a list of UNIDs for each document. 

In order to extract the values from the output collections (in our case the output is a List(Of String) ), For Each activity should be used to iterate through the entire list and extract all elements OR Get Element From Collection activity to extract a specific element using index: OR   

 


Execution:

  • the activity will return a list of all documents found in the specified lotusnotes database.

 

  • No labels