Management APIs
cURL
curl --request POST \ --url https://api.basic.tech/project/ \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "name": "<string>", "team_id": "<string>", "slug": "<string>" }'
{ "data": { "id": "<string>", "name": "<string>", "slug": "<string>", "created_at": "2023-11-07T05:31:56Z" } }
Creates a new project for the authenticated user and returns an API key for the project
JWT Authorization Token header using the Bearer scheme
Project created successfully