Add Subscription Seats
Adds seats to a Subscription. Initially the seats will be unassigned. To assign granteeIds to the seats use the update many method.
Code Sample
import { Salable } from '@salable/node-sdk';
const salable = new Salable('{{API_KEY}}');
await salable.subscriptions.addSeats('{{SUBSCRIPTION_UUID}}', { increment: 2 });
Parameters
subscriptionId (required)
Type: string
The uuid of the Subscription where the seats will be added
config (required)
Type: ISubscriptionAddSeatsParams
All config options which can be passed in to this method
| Option | Description |
|---|---|
| increment | The number of seats to be created |