cURL
curl --request POST \ --url https://api.novacal.io/v1/teams \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "name": "<string>", "username": "<string>", "about": "<string>" } '
{ "success": true, "data": { "id": 123, "name": "<string>", "username": "<string>", "about": "<string>", "logo": "<string>" } }
Creates a new team
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Team to create
The name of the team
55
The unique username for the team (must be unique across teams and users)
255
Description or about text for the team
5000
Team created
Indicates whether the request was successful
true
Show child attributes