users
Update User
Update a User
Args: app_id (uuid.UUID): The ID of the app representing the client application using honcho user_id (str): The User ID representing the user, managed by the user user (schemas.UserCreate): The User object containing any metadata
Returns: schemas.User: Updated User object
PUT
/
apps
/
{app_id}
/
users
/
{user_id}
Authorizations
Authorization
string
headerrequiredBearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
app_id
string
requireduser_id
string
requiredBody
application/json
name
string | null
metadata
object | null
Response
200 - application/json
id
string
requiredname
string
requiredapp_id
string
requiredcreated_at
string
requiredmetadata
object
required