AccountGetCommentsTab Method |
This method enables you to get the comment details available in the Comment tab of an Account in CampusNexus CRM. For example, you can retrieve comments about a
school added to the Comment Tab of the relevant Account maintained for the school in CampusNexus CRM. You must send the Account ID and the Comment Tab ID of the Account as input
parameters to the Account iService. The Account iService processes the input values and returns the comment details if the get operation is successful.
Namespace: AccountService
C#
public long GetCommentsTab( long accountID, long tabID, out CommentsData[] comments, out string error )
Parameters
- accountID
- Type: SystemInt64
The ID of the Account for which you want to retrieve the comments from the Comment Tab. - tabID
- Type: SystemInt64
The ID of the Comment Tab associated with the Account. - comments
- Type: Talisma.Server.CommonCommentsData
This is an array of the CommentsData[] structure that contains the details of comments retrieved from the Comment Tab of the specified Account. - error
- Type: SystemString
The error messages returned when the get operation fails.
Return Value
Type: Int64The GetCommentsTab method returns 0 if the get operation is successful and a negative value if the operation fails.
