Javascript
import BlueHive from '@bluehive/sdk'; const client = new BlueHive({ apiKey: 'My API Key', }); const serviceBundles = await client.employers.serviceBundles.list('employerId'); console.log(serviceBundles);
[ { "_id": "<string>", "employerId": "<string>", "bundleName": "<string>", "serviceIds": [ "<string>" ], "roles": [ "<string>" ], "createdAt": "<string>", "createdBy": "<string>", "updatedAt": "<string>", "updatedBy": "<string>" } ]
API key for accessing BlueHive API endpoints. Format: "ApiKey <your-api-key>" or "Bearer <your-api-key>"
Default Response
Was this page helpful?