Skip to main content

Creating a Project

danger

Project creation is only available with a Master API Key or through the Dashboard/Projects. Since a Master API Key is the API Key with the highest permission level, please hide it securely so no one can access it directly.

In this section, we will show you how to create a Busy Hour Project.

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

Creating a Project

To create a Busy Hour Project, you will need to use the POST method pointing to /v1/projects. The request itself accepts the following properties:

PropertyTypeDescription
namestringThe name of the project
descriptionstring (optional)The description of the project

Quick Example

curl -H "x-busy-key: Bearer {API_KEY}" \
-H "Content-Type: application/json" \
-d '{
"name": "My Project"
}' \
-X POST https://api.busyhour.id/v1/projects