Teams
Update Team
Updates the properties of an existing team, such as its name or type. With user permissions, the team must be one the requesting user has edit access to. With admin permissions, any team belonging to the account can be updated.
patch/v1/teams/{id}
Path parameters
idnumber required
ID of the team to update.
Headers
Lucid-Request-Asstring
If the requesting user is an account owner, team admin, or team manager with the required permissions and they make the request with the value of “admin” as this header and include an admin scope, the request will be made using their admin permissions.
Request body
Example request
{
"name": "Team Name"
}Response
OK. Returns a Team resource containing information about the updated team.
Example response
{
"id": 123456789,
"name": "Team Name",
"type": "open",
"created": "2024-01-30T16:29:37Z"
}