ClientGetAudits Method (String, Int32, Int32) |
Gets a list of audit logs for the specified user.
Namespace:
MattermostDriver
Assembly:
MattermostDriver (in MattermostDriver.dll) Version: 0.0.3.10 (0.0.3.10)
Syntaxpublic List<Audit> GetAudits(
string user_id,
int page,
int per_page
)
Public Function GetAudits (
user_id As String,
page As Integer,
per_page As Integer
) As List(Of Audit)
public:
List<Audit^>^ GetAudits(
String^ user_id,
int page,
int per_page
)
member GetAudits :
user_id : string *
page : int *
per_page : int -> List<Audit>
Parameters
- user_id
- Type: SystemString
The user ID. - page
- Type: SystemInt32
The page of results to retrieve. Starts at 0. - per_page
- Type: SystemInt32
The number of results per page.
Return Value
Type:
ListAuditA list of Audit objects.
See Also