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
Name of the project
ID of the team that owns this project
URL-friendly slug for the project. If not provided, will be generated from name
Project created successfully
Show child attributes