Sign in

Update user

documented

Update an existing user.

PATCH /v2/users/{USER_ID}Usersno 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 "https://api.harvestapp.com/v2/users/{{$user_id}}" \
  -X PATCH \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Harvest-Account-Id: {{HARVEST_ACCOUNT_ID}}" \
  -H "Accept: application/json" \
  -H "Content-Type: application/json" \
  -H "User-Agent: MyApp ([email protected])" \
  -d '{"first_name": "{{$first_name}}", "last_name": "{{$last_name}}", "email": "{{$email}}", "timezone": "{{$timezone}}", "is_active": {{$is_active}}, "weekly_capacity": {{$weekly_capacity}}}'