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

ModIO.APIClient.GetModTags

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

APIClient.GetModTags

public static void GetModTags(int modId, RequestFilter filter, APIPaginationParameters pagination, Action<RequestPage<ModTag>> successCallback, Action<WebRequestError> errorCallback);

Parameters

Name Description
modId Mod to fetch tags for
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

Fetches the tags applied to the given mod.

This is a filterable endpoint that returns all of the tags matching the filter and pagination parameters. A successful request will return a RequestPage of the ModTags applied to the given mod.

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

See also: docs.mod.io page, ModIO.API.GetModTagsFilterFields

Clone this wiki locally