Skip to main content

Authenticate Users

In this section, we will show you how to authenticate a Busy Hour User.

Prerequisites

  1. Busy Hour Account (Sign Up if you don't have one yet)
  2. Generate a Master/Project API Key from Dashboard/Settings or from Dashboard/Projects

Authenticate Users

warning

You can authenticate a Busy Hour User with any Master API Key or a Project API Key that only specificly for the project user you want to authenticate.

To authenticate a Busy Hour User, you will need to use the POST method pointing to /v1/users/signin and pass the userId with the userId is the ID of the user you want to authenticate.

Quick Example

curl -H "x-busy-key: Bearer {API_KEY}" \
-H "Content-Type: application/json" \
-d '{"userId": "123456789"}' \
-X POST https://api.busyhour.com/v1/users/signin