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 | Description |
|---|---|---|
| pagination | HelixForwardPagination | |
| pagination.after | string | A cursor to get the following page of. |
| pagination.limit | string | The number of results per page. |
Return type: HelixPaginatedResult<HelixTag>
getAllStreamTagsPaginated()
Creates a paginator for all stream tags.
Return type: HelixPaginatedRequest<HelixTagData, HelixTag>