Sign in

Remove User from Team

documented

Removes a user from your Team.

POST /team/remove_memberTeamno 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.hellosign.com/v3/team/remove_member" \
  -X POST \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"account_id": "{{$account_id}}", "email_address": "{{$email_address}}", "new_owner_email_address": "{{$new_owner_email_address}}", "new_team_id": "{{$new_team_id}}", "new_role": "{{$new_role}}"}'