twitcheasy-twitch-bottwitch-authtwitch-auth-tmitwitch-chat-clienttwitch-eventsubtwitch-pubsub-clienttwitch-webhooks
Welcome

HelixExtensionsApi

The Helix API methods that deal with extensions.

Overview

Can be accessed using client.helix.extensions on an ApiClient instance.

Example

const api = new ApiClient(new StaticAuthProvider(clientId, accessToken));
const transactions = await api.helix.extionsions.getExtensionTransactions('abcd');

Methods

getExtensionTransactions(extensionId, filter)

async

Retrieves a list of transactions for the given extension.

Parameter Type Required Default Description
extensionId string none

The ID of the extension to retrieve transactions for.

filter HelixExtensionTransactionsPaginatedFilter {}

Additional filters.

getExtensionTransactionsPaginated(extensionId, filter)

Creates a paginator for transactions for the given extension.

Parameter Type Required Default Description
extensionId string none

The ID of the extension to retrieve transactions for.

filter HelixExtensionTransactionsFilter {}

Additional filters.

Return type: HelixPaginatedRequest<HelixExtensionTransactionData, HelixExtensionTransaction>