Skip to main content
Version: Node SDK

Get All Features

Returns a list of features with cursor based pagination.

Code Sample

import { initSalable } from '@salable/node-sdk';

const salable = initSalable('{{API_KEY}}', 'v3');

const features = await salable.features.getAll({
productUuid: '431b0c60-a145-4ae4-a7e6-391761b018ba'
});

Parameters

options (required)

Type: GetAllFeaturesOptionsV3

ParameterTypeDescriptionRequired
productUuidstringThe product to retrieve features for
cursorstringCursor value, used for pagination
takenumberThe number of subscriptions to fetch. Default: 20
sortasc | descDefault asc

Return Type

For more information about this request see our API documentation on get all features.