import Finch from '@tryfinch/finch-api';const client = new Finch({ accessToken: 'My Access Token',});// Automatically fetches more pages as needed.for await (const payGroupListResponse of client.payroll.payGroups.list()) { console.log(payGroupListResponse.id);}
import Finch from '@tryfinch/finch-api';const client = new Finch({ accessToken: 'My Access Token',});// Automatically fetches more pages as needed.for await (const payGroupListResponse of client.payroll.payGroups.list()) { console.log(payGroupListResponse.id);}