Skip to main content

Add seats

Creates additional seats on a subscription.

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

const salable = new Salable('your-salable-api-key', 'v2');
await salable.subscriptions.addSeats('your-subscription-uuid', {
increment: 2,
});
info

All seats created are unassigned by default. You can assign seats after they have been added to the subscription.