Sign in

Update user (alternate)

documented

Update user attributes (same as above).

PUT /{site}/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.tenderapp.com/{{$site}}/users/{{$user_id}}" \
  -X PUT \
  -H "Accept: application/vnd.tender-v1+json" \
  -H "Content-Type: application/json" \
  -H "X-Tender-Auth: {{TENDERAPP_API_KEY}}" \
  -d '{"name": "{{$name}}", "email": "{{$email}}", "title": "{{$title}}", "external_id": "{{$external_id}}", "state": "{{$state}}", "password": "{{$password}}", "password_confirmation": "{{$password_confirmation}}", "extras": {{$extras}}}'