import Nuntly from '@nuntly/sdk';const client = new Nuntly({ apiKey: 'My API Key',});// Automatically fetches more pages as needed.for await (const membershipListResponse of client.organizations.memberships.list('id')) { console.log(membershipListResponse.org_id);}
import Nuntly from '@nuntly/sdk';const client = new Nuntly({ apiKey: 'My API Key',});// Automatically fetches more pages as needed.for await (const membershipListResponse of client.organizations.memberships.list('id')) { console.log(membershipListResponse.org_id);}