Bevy API GDG
  1. Chapter
Bevy API GDG
  • Attendee
    • Add Attendees
      POST
    • Get Attendee Search
      GET
    • Update Attendee
      PUT
    • Send Event Email
      PUT
    • Resend Event Email
      POST
    • Add Attendees New
      POST
    • Get Event Attendees
      GET
    • Checkin Attendee
      PUT
    • Delete attendee registration
      DELETE
    • Get Attendee by ID
      GET
    • Delete all attendee registrations by event
      DELETE
  • Order
    • Add Order
    • Update Order
    • Check Order by ID
  • Membership
    • Add Membership
  • Bevy Virtual
    • Get Main Stage Video
    • Get Session Video IDs
    • Get Session Video URLs
  • Chapter
    • Get Chapter Member by ID
      GET
    • List Chapter Members Copy
      GET
    • Search Member
      POST
    • Get Chapters Status
      GET
    • Get Chapter Regions
      GET
    • Create Chapter
      POST
    • List chapters
      GET
    • Get Chapter by ID
      GET
    • List Chapter Events
      GET
    • List Chapter Members
      GET
    • Add Chapter Member
      POST
    • List Chapter Team
      GET
    • Add Chapter Team Member
      POST
    • Update Chapter Team Member
      PUT
    • Partial Update Chapter Team Member
      PATCH
    • Delete Chapter Team Member
      DELETE
    • Add chapter's members in batch
      POST
    • Delete chapter's member
      DELETE
  • Cohosted Events
    • List collaborating chapters
    • Delete cohosted event
    • Add all chapters as cohosts
    • Chapters a user can add as a cohost
  • Event
    • Get Event Counts
    • Get Event by ID
    • List events
    • List event types
    • Get Event Type by ID
    • List Event Attendees
    • List event tags
  • Search
    • Search chapters
    • Search events
  • User
    • List users
    • Get User by ID or Email
    • Update User
    • Delete User
    • Deactivate User
    • List user's events
    • List user's chapters
    • List user's chapter teams
    • Create Prospective User
    • Opt out of emails
    • Get User Counts
  1. Chapter

Add chapter's members in batch

POST
/chapter/{chapter_id}/members
Add members to a chapter in batch. The members will be created asynchronously or synchronously based on the async parameter.

Request

Path Params

Body Params application/json

Examples

Responses

🟢200OK
application/json
Chapter members created. Synchronous only
Body

🟢201Created
🟠400Bad Request
🟠403Forbidden
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/chapter/642/members' \
--header 'Content-Type: application/json' \
--data-raw '{
    "signup_consent": true,
    "consent_reason": "Filled the form",
    "async": false,
    "members": [
        {
            "email": "user@mail.com",
            "first_name": "John",
            "last_name": "Doe"
        }
    ]
}'
Response Response Example
200 - Example 1
[
    {
        "id": 1234,
        "tags": [
            "string"
        ],
        "user": {
            "authentication_providers": [
                {
                    "provider": "google-oauth2",
                    "provider_user_id": 1234
                }
            ],
            "avatar": {
                "url": "https://res.cloudinary.com/startup-grind/image/upload/.../image.png",
                "path": "image.png",
                "thumbnail_width": 720,
                "thumbnail_height": 540,
                "thumbnail_format": "auto",
                "thumbnail_url": "https://res.cloudinary.com/startup-grind/image/upload/.../image.png"
            },
            "company": "Bevy",
            "cropped_avatar_url": "https://res.cloudinary.com/startup-grind/image/fetch/.../image.jpeg",
            "extra_data": {},
            "title": "Mr.",
            "role": {
                "id": 1234,
                "name": "Prospective",
                "description": "Prospective Member",
                "user_active_status": true
            },
            "email": "user@mail.com",
            "first_name": "John",
            "id": 1234,
            "last_name": "Doe",
            "username": "string"
        },
        "chapter": {
            "active": true,
            "allow_internal_list_management": true,
            "available_months_last_12": 0,
            "banner_crop_vertical": 0,
            "blog_category": 4,
            "chapter_location": "Franklin (AL)",
            "chapter_photos": [
                {
                    "id": 1234,
                    "order": 1,
                    "picture": {
                        "url": "https://res.cloudinary.com/startup-grind/image/upload/.../image.png",
                        "path": "image.png",
                        "thumbnail_width": 720,
                        "thumbnail_height": 540,
                        "thumbnail_format": "auto",
                        "thumbnail_url": "https://res.cloudinary.com/startup-grind/image/upload/.../image.png"
                    }
                }
            ],
            "city": "Franklin",
            "could_update_meetup": false,
            "country": "AL",
            "country_name": "Albania",
            "created": "2024-02-02T13:17:59.903551Z",
            "cropped_banner_url": "https://res.cloudinary.com/startup-grind/image/fetch/.../image.jpeg",
            "currency": "USD",
            "description": "lorem ipsum",
            "event_activity_percentage_last_12": 0,
            "facebook_page": "https://facebook.com/",
            "featured_video_url": "https://youtube.com/",
            "flickr_page": "https://flickr.com/",
            "health_indicator": [
                0,
                0,
                -1,
                -1,
                -1
            ],
            "id": 50,
            "import_wp_events": false,
            "imported_id": 1234,
            "instagram_handle": "bevy",
            "integrations": {
                "meetup": {
                    "url": "https://www.meetup.com/Awesome-NYC/",
                    "urlname": "awesome-nyc",
                    "name": "Awesome NYC",
                    "topics": [
                        "Tech",
                        "Business"
                    ],
                    "description": "Awesome NYC"
                }
            },
            "is_city": false,
            "is_hidden": false,
            "is_production_chapter": true,
            "hide_country_info": false,
            "latitude": 30.0444196,
            "linkedin_page": "https://linkedin.com/",
            "logo": {
                "url": "https://res.cloudinary.com/startup-grind/image/upload/.../image.png",
                "path": "image.png",
                "thumbnail_width": 720,
                "thumbnail_height": 540,
                "thumbnail_format": "auto",
                "thumbnail_url": "https://res.cloudinary.com/startup-grind/image/upload/.../image.png"
            },
            "longitude": 31.2357116,
            "mailchimp_api_key": "1234567890abcdefg",
            "mailchimp_list_id": "1234567890",
            "media_partners": [
                1,
                3
            ],
            "media_partners_inactive": [
                2
            ],
            "meetup_api_key": "1234567890abcdefg",
            "meetup_group": "Awesome NYC",
            "monthly_events_last_12": 0,
            "on_team": false,
            "payee_setup_process_url": "https://instance.bevy.com/chapter-2024/payee-setup",
            "chapter_team": [
                {
                    "id": 1234,
                    "user": {
                        "authentication_providers": [
                            {
                                "provider": "google-oauth2",
                                "provider_user_id": 1234
                            }
                        ],
                        "avatar": {
                            "url": "https://res.cloudinary.com/startup-grind/image/upload/.../image.png",
                            "path": "image.png",
                            "thumbnail_width": 720,
                            "thumbnail_height": 540,
                            "thumbnail_format": "auto",
                            "thumbnail_url": "https://res.cloudinary.com/startup-grind/image/upload/.../image.png"
                        },
                        "company": "Bevy",
                        "cropped_avatar_url": "https://res.cloudinary.com/startup-grind/image/fetch/.../image.jpeg",
                        "extra_data": {},
                        "title": "Mr.",
                        "role": {
                            "id": 1234,
                            "name": "Prospective",
                            "description": "Prospective Member",
                            "user_active_status": true
                        },
                        "email": "user@mail.com",
                        "first_name": "John",
                        "id": 1234,
                        "last_name": "Doe",
                        "username": "string"
                    },
                    "role": {
                        "id": 1234,
                        "name": "Lead Organizer Role",
                        "description": "Full chapter permissions",
                        "permissions": [
                            "string"
                        ],
                        "visible": true
                    },
                    "title": "Lead Organizer"
                }
            ],
            "payment_lead": 10,
            "picture": {
                "url": "https://res.cloudinary.com/startup-grind/image/upload/.../image.png",
                "path": "image.png",
                "thumbnail_width": 720,
                "thumbnail_height": 540,
                "thumbnail_format": "auto",
                "thumbnail_url": "https://res.cloudinary.com/startup-grind/image/upload/.../image.png"
            },
            "region": "USA",
            "rsvp_events_only": false,
            "slug": "chapter-2024",
            "sponsors": [
                1,
                2
            ],
            "sponsors_inactive": [
                3
            ],
            "state": "New York",
            "status": 2,
            "ticket_revenue_share_percentage": 0,
            "timezone": "Pacific/Niue",
            "timezone_utc_offset": "-1100",
            "title": "Chapter 2024",
            "total_tickets_sold_lifetime": 0,
            "twitter_handle": "bevy",
            "relative_url": "/chapter-2024/",
            "url": "https://instance.bevy.com/chapter-2024/",
            "use_external_ticketing": false,
            "use_new_newsletters": false,
            "website": "https://chapter-2024.com/",
            "language": "en",
            "chapter_lists": {},
            "external_extra_data": {},
            "members_count": 100,
            "parent_chapter": 8
        },
        "created_date": "2024-01-09T17:59:22Z",
        "departure_date": "2024-01-09T17:59:22Z",
        "event_attendance_stats": {},
        "event_tickets_stats": {},
        "events_registered": [
            {
                "allows_cohosting": false,
                "checkin_count": 0,
                "cohost_registration_url": "https://instance.bevy.com/events/details/chapter-2024-presents/",
                "end_date": "2024-01-09T17:59:22Z",
                "id": 1234,
                "start_date": "2024-01-09T17:59:22Z",
                "status": "Draft",
                "title": "Chapter 2024",
                "total_attendees": 0,
                "total_revenue": 0,
                "total_tickets_sold": false,
                "url": "https://instance.bevy.com/events/details/chapter-2024-presents/"
            }
        ],
        "events_registered_count": 1,
        "user_preferences_memberships": {}
    }
]
Modified at 2025-10-16 04:52:10
Previous
Delete Chapter Team Member
Next
Delete chapter's member
Built with