Update Usage
Increments usage count on a License
Code Sample
import { Salable } from '@salable/node-sdk';
const salable = new Salable('{{API_KEY}}');
await salable.usage.update('{{LICENSE_UUID}}', '{{FEATURE_VARIABLE_NAME}}', {
increment: 2,
});
Parameters
licenseUuid (required)
Type: string
The uuid
of the License to update the usage on
featureVariableName (required)
Type: string
The variable name of the feature to be updated
countOptions (required)
Type: ICountOptions
Option | Description |
---|---|
increment | The number to increment the count by |