# Add one member to a group or channel
await app.add_chat_members(chat_id, user_id)
# Add multiple members to a group or channel
await app.add_chat_members(chat_id, [user_id1, user_id2, user_id3])
# Change forward_limit (for basic groups only)
await app.add_chat_members(chat_id, user_id, forward_limit=25)