Projects

Create a new project

Creates a new project for the authenticated user. A user cannot have more than one project with the same project_name.

POST
/project
AuthorizationBearer <token>

Token-based authentication using access tokens.

In: header

project_name?Project Name

Name of the project to be created.

Defaultnull

Response Body

Examples

curl -X POST "https://loading/project" \
  -H "Content-Type: application/json" \
  -d '{}'
{
  "project_id": "string",
  "project_name": "string"
}
Empty