Sign in

Update room members

documented

Changes the members of the chat room.

PUT /rooms/{room_id}/membersRoomsno 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.chatwork.com/v2/rooms/{{$room_id}}/members" \
  -X PUT \
  -H "X-ChatWorkToken: {{CHATWORK_API_KEY}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"members_admin_ids":"{{$admin_ids}}","members_member_ids":"{{$member_ids}}","members_readonly_ids":"{{$readonly_ids}}"}'