Authentication

Start making requests to the Universal Talent API and the Agent API.

All requests to our APIs require authentication. Peoplelogic.dev uses JWT Bearer tokens for authentication for all calls.

Administration vs Organization Authentication

There are generally two types of credentials that can be used to authentication to the APIs. The first is an Administration token (or API key). This is provided to you when you first sign up for Peoplelogic.dev. You should keep this key very secure as it grants access to your Organization within Peoplelogic.dev.

The other type of credential is an Organization token. This token is per-user and carries the same permissions as the user it was generated for.

HTTP Header: Bearer Authorization

All requests must be authenticated via token in the HTTP Authorization header in the following format:

Authorization: Bearer YOUR_API_KEY

For example if your Peoplelogic.dev Key is abcdefasfghijklmnopqrst then you will make API calls with the following as your authorization header

Authorization: Bearer abcdefasfghijklmnopqrst

Unauthenticated requests will receive a 401 error: 401: Unauthorized.

Last updated

Was this helpful?