Skip to content
This repository has been archived by the owner on Sep 21, 2022. It is now read-only.

ModIO.APIClient.GetUserEvents

Jackson Wood edited this page Mar 6, 2019 · 10 revisions

APIClient.GetUserEvents

public static void GetUserEvents(RequestFilter filter, APIPaginationParameters pagination, Action<RequestPage<UserEvent>> successCallback, Action<WebRequestError> errorCallback);

Parameters

Name Description
filter The filter parameters to be applied to the request
pagination The pagination parameters to be applied to the request
successCallback Action to execute if the request succeeds
errorCallback Action to execute if the request returns an error

Description

Fetch the update events for the authenticated user.

A successful request returns a RequestPage of UserEvents that summarize the updates made to the authenticated user, and that match the filter and pagination parameters.

See the mod.io filtering documentation for more comprehensive explanation of the filtering and pagination parameters.

See also: docs.mod.io page, ModIO.API.GetUserEventsFilterFields, ModIO.UserAuthenticationData

Clone this wiki locally