Update the current authenticated user.
Parameters
has_completed_onboarding: bool
Returns
Update
require "revox"
revox = Revox::Client.new(api_key: "My API Key")
me = revox.users.me.update
puts(me){
"user": {
"id": "id",
"created_at": {},
"email": "email",
"first_name": "first_name",
"has_completed_onboarding": true,
"last_name": "last_name",
"organization_id": "organization_id",
"updated_at": {}
}
}Returns Examples
{
"user": {
"id": "id",
"created_at": {},
"email": "email",
"first_name": "first_name",
"has_completed_onboarding": true,
"last_name": "last_name",
"organization_id": "organization_id",
"updated_at": {}
}
}