cURL
curl --request PUT \ --url https://api.novacal.io/v1/teams/{id} \ --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>" } }
Updates an existing team
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
ID of team to update
Team data to update
The name of the team
55
The unique username for the team (must be unique across teams and users)
255
^[a-zA-Z0-9\-\_]+$
Description or about text for the team
5000
Team updated
Indicates whether the request was successful
true
Show child attributes