This article explains the steps to use a Bevy API to manage multiple team members at the same time.
When you have admin access, you can use the API to add, edit, or delete multiple team members in bulk.
Learn more about the specific API endpoints in API Reference.
To use the API:
- Create a script to load users to import.
The script should include first_name, last_name, email, role_id, title, and chapter_id.
Access chapter ID's at List Chapters endpoint.
Your chapter role ID's are unique to your organization. They're available through the API. For example, https://bevyexample.com/api/chapter_role. - For each user, call
/api/chapter/[CHAPTER ID]/chapterteam
with method=POST and data of{"first_name": "...", "last_name": "...", "email": "...", ...}
- Check the response for errors.
Repeat these steps for the different imports you're performing.