Management APIs
cURL
curl --request PATCH \ --url https://api.basic.tech/team/{team_id} \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "name": "<string>", "slug": "<string>" } '
{ "data": { "id": "<string>", "name": "<string>", "slug": "<string>", "owner_id": "<string>", "created_at": "2023-11-07T05:31:56Z" } }
Updates a team’s name and/or slug
JWT Authorization Token header using the Bearer scheme
The ID of the team to update
New name for the team
New URL-friendly slug for the team - must be unique
Team updated successfully
Show child attributes