Overview
Can be accessed using client.helix.tags
on an
ApiClient
instance.
Example
const api = new ApiClient(new StaticAuthProvider(clientId, accessToken));
const tags = await api.helix.tags.getAllStreamTags();
Methods
getAllStreamTags(pagination)
asyncRetrieves all stream tags.
Parameter | Type | Required | Default | Description |
---|---|---|---|---|
pagination | HelixForwardPagination | {} | ||
pagination.after | string | none |
A cursor to get the following page of. |
|
pagination.limit | string | none |
The number of results per page. |
Return type:
HelixPaginatedResult<HelixTag>
getAllStreamTagsPaginated()
Creates a paginator for all stream tags.
Return type:
HelixPaginatedRequest<HelixTagData,
HelixTag>