Skip to main content

Retrieving Users

In this section, we will show you how to get a list or one of 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

Retrieving Multiple Users

warning

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

To retrieve a list of Busy Hour User, you will need to use the GET method pointing to /v1/users. The request itself accepts a query string with the following properties:

PropertyTypeDescription
projectIdstring (optional)The ID of the project that the user belong to
nicknamestring (optional)The nickname of the user
limitnumber (optional)Total number of users to retrieve, (default: 10)
pagenumber (optional)The page number of users to retrieve, (default: 1)

Quick Example

curl -H "x-busy-key: Bearer {API_KEY}" \
https://api.busyhour.com/v1/users?projectId={PROJECT_ID}&limit={LIMIT}&page={PAGE}

Retrieving a User

warning

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

To retrieve a Busy Hour Project, you will need to use the GET method pointing to /v1/users/{userId} with the userId is the ID of the user you want to retrieve.

Quick Example

curl -H "x-busy-key: Bearer {API_KEY}" \
https://api.busyhour.com/v1/users/{userId}