Skip to main content
GET
/
v1
/
employers
/
list
JavaScript
import BlueHive from '@bluehive/sdk';

const client = new BlueHive({
  apiKey: 'My API Key',
});

const employers = await client.employers.list({ 'login-token': 'login-token', 'user-id': 'user-id' });

console.log(employers);
[
  {}
]

Authorizations

Authorization
string
header
required

API key for accessing BlueHive API endpoints. Format: "ApiKey <your-api-key>" or "Bearer <your-api-key>"

Headers

authorization
string
required
login-token
string
required
user-id
string
required

Response

Default Response

The response is of type object[].

I