Sign in

Update user

documented

Update an existing user (Cloud/Enterprise). ([docs.n8n.io](https://docs.n8n.io/api/api-reference/))

PATCH /users/{user_id}Cloud/Enterprise onlyno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "{{$n8n_host}}/api/v1/users/{{$user_id}}" \
  -X PATCH \
  -H "Accept: application/json" \
  -H "Content-Type: application/json" \
  -H "X-N8N-API-KEY: {{N8N_API_KEY}}" \
  -d '{"firstName": "{{$firstName}}", "lastName": "{{$lastName}}", "email": "{{$email}}", "isActive": {{$isActive}}}'