Javascript
import BlueHive from '@bluehive/sdk'; const client = new BlueHive({ apiKey: 'My API Key', }); const serviceBundle = await client.employers.serviceBundles.retrieve('id', { employerId: 'employerId' }); console.log(serviceBundle._id);
{ "_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?