Management APIs
cURL
curl --request POST \ --url https://api.basic.tech/team/ \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "name": "<string>", "slug": "<string>" } '
{ "data": { "id": "<string>", "name": "<string>", "slug": "<string>", "owner": "<string>", "created_at": "2023-11-07T05:31:56Z" } }
Creates a new team for the authenticated user
JWT Authorization Token header using the Bearer scheme
Name of the team
URL-friendly slug for the team - must be unique
Team created successfully
Show child attributes