...
Get Contacts By UNID
This activity connects to the specified LotusNotes account and outputs a LotusNotes client connectiongets all contacts from entry using UID.
Activity Parameters
The Get Contacts By UNID activity parameters can be provided by manual inserted values or via IN arguments or variables:
...
Execution:
- the activity will return a list of all documents found in the specified lotusnotes database.
Get Entries
This activity gets all entries from the database.
Activity Parameters
The Get Entries activity parameters can be provided by manual inserted values or via IN arguments or variables:
Parameters:
- Database (text box editor type) (type: string): the lotusnotes database to return entries 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 entry.
- Hrefs (type: list<string>): outputs a list of hrefs for the specified entry.
- Status (type: boolean): outputs the status for the LotusNotes request.
- UNIDs (type: list<string>): outputs a list of UNIDs for entry.
- Titles (type: list<string>): outputs a list of every title.
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:
Get Mail Content By UNID
This activity gets mail content by UNID from the specified database.
Activity Parameters
The Get Mail Content By UNID activity parameters can be provided by manual inserted values or via IN arguments or variables:
Parameters:
- Database (text box editor type) (type: string): the lotusnotes database to return mail 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:
- Content Type (type: list<string>): outputs the email content type list.
- Data (type: string): outputs the email content.
- From (type: string): outputs the from email.
- Received Date (type: string): outputs the received date.
- Status (type: boolean): outputs the status for the LotusNotes request.
- Subject (type: string): outputs the mail subject.
In order to extract the values from the output collection (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:
Get Mails
This activity gets all mails from database.
Activity Parameters
The Get Mails activity parameters can be provided by manual inserted values or via IN arguments or variables:
Parameters:
- Database (text box editor type) (type: string): the lotusnotes database to return mails from.
The Read Only Output variable are the possible output values that the activity will provide:
- From (type: list<string>): outputs a list of mails FROM.
- Received Date (type: list<string>): outputs a list of mail dates.
- Status (type: boolean): outputs the status for the LotusNotes request.
- Subject (type: list<string>): outputs a list of mail subjects.
- UNIDs (type: list<string>): outputs a list of unids for each email.
In order to extract the values from the output collection (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:
Get View
This activity gets nformation about lotusnotes view.
Activity Parameters
The Get View activity parameters can be provided by manual inserted values or via IN arguments or variables:
Parameters:
- Database (text box editor type) (type: string): the lotusnotes database.
- View (text box editor type) (type: string): the lotusnotes view.
The Read Only Output variable are the possible output values that the activity will provide:
- Status (type: boolean): outputs the status for the LotusNotes request.
- Users (type: list<string>): outputs a list of users for the specified account and view.
In order to extract the values from the output collection (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: