Sign in

Update user

documented

Update an existing user by id.

POST /api/v1/external/users/updateUsersno 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://core.callpage.io/api/v1/external/users/update" \
  -X POST \
  -H "Accept: application/json" \
  -H "Content-Type: application/json" \
  -H "Authorization: {{CALLPAGE_API_KEY}}" \
  -d '{"id": {{$user_id}}, "name": "{{$name}}", "tel": "{{$tel}}", "email": "{{$email}}", "role": "{{$role}}"}'