Users
Update user
Update an existing user.
gigstack Connect: Update other teams' users using the team parameter.
put/users/{id}
Path parameters
idstring required
Query parameters
teamstring
gigstack Connect: Target team ID for multi-team access.
Requires gigstack Connect enabled on your team and shared billing account.
Example: ?team=team_xyz789
Request body
Example request
{
"email": "user@example.com",
"first_name": "John",
"last_name": "Doe",
"phone": "+52 55 1234 5678",
"company_role": "Manager",
"address": {
"country": "MEX",
"street": "Av. Insurgentes Sur",
"zip": "03100",
"city": "Ciudad de México",
"state": "CDMX",
"exterior": "123",
"municipality": "Benito Juárez",
"neighborhood": "Del Valle"
},
"auto_join": true,
"role": "viewer"
}Response
User updated successfully
Example response
{
"message": "Operation completed successfully"
}