[This is preliminary documentation and is subject to change.]

Gets a list of all the pending invitations and its related information for a particular user.

Namespace:  OfficeClip.DBLayer.Account
Assembly:  OfficeClip.DBLayer (in OfficeClip.DBLayer)
Version: 8.1.1.0

Syntax

C#
public DataSet GetPendingInvitations(
	int userId
)
Visual Basic (Declaration)
Public Function GetPendingInvitations ( _
	userId As Integer _
) As DataSet
Visual C++
public:
DataSet^ GetPendingInvitations(
	int userId
)

Parameters

userId
Type: System..::.Int32
The unique id of the user.

Return Value

DataSet containing all the pending invitations and its related information for the currently logged in user. This DataSet consists of a single DataTable with the following columns.
  • GroupId (System.Int32)Id of the group corresponding to which there is a pending invitation.
  • groupName (System.String)Name of the group where there is a pending invitation.
  • admin (System.String)Name of the group administrator who sent the invitation which is currently pending.
  • AdminEmailAddress (System.String)Email Address of the group administrator who sent the invitation.
  • adminPhoneNumber (System.String)Primary work phone number of the group administrator who sent the invitation.

See Also