Cannot add participant in to meeting

Hi There!,

I’m trying to add more participants into meeting but when i make API call to add participants, I get error
Only available for paid users but my account is already paid account.

below is my request and response details,

import requests

url = "https://api.zoom.us/v2/meetings/{my meeting id here}/batch_registrants"

payload = '{ "auto_approve":true, "registrants": [ { "first_name": "Imran", "last_name": "Khan", "email": "email1@gmail.com" }, { "first_name": "Jovy", "last_name": "Chiu", "email": "email2@gmail.com" } ] }'

headers = {

'authorization': "JWT Token here",

'content-type': "application/json"

}

response = requests.request("POST", url, data=payload, headers=headers)

print(response.text)

response:


{"code":200,"message":"Only available for paid users: OcVP5NTIQ3OGmdNk3ZSZ6w."}

Hey @jovy

Thanks for reaching out to the Zoom Developer Forum, I am happy to help here!
Unfortunately I am not able to replicate this issue on my end.
Could you please share with me the request body that you are sending when creating the meeting?
Are you scheduling this meeting for yourself or for someone else?

Best,
Elisa

Hi @elisa.zoom ,

Thanks for replay,
I’m creating scheduled meeting via API.
after creation i’m trying to add participants in meeting but it doest adding them and getting this error.
below is my create meeting API request

URL:
https://api.zoom.us/v2/users/{user}/meetings

Request Body:

{
“agenda”: “test 2”,
“created_at”: “”,
“duration”: “30”,
“host_email”: “”,
“host_id”: “”,
“id”: 0,
“join_url”: “”,
“password”: “123456”,
“pmi”: “”,
“schedule_for”: “host@domain.com”,
“settings”: {
“cn_meeting”: false,
“email_notification”: true,
“host_video”: true,
“in_meeting”: true,
“join_before_host”: true,
“mute_upon_entry”: false,
“participant_video”: true,
“registrants_confirmation_email”: true,
“registrants_email_notification”: true,
“meeting_invitees”: [
{
“email”: “email1@domain.com
},
{
“email”: “email2@domain.com
},
{
“email”: “email3@domain.com
}
],
“use_pmi”: true,
“watermark”: false
},
“start_time”: “2022-02-08T12:30”,
“start_url”: “”,
“status”: “”,
“timezone”: “India Standard Time”,
“topic”: “test 1”,
“type”: 2,
“uuid”: “”
}

and response details 

{
“uuid”: “uuid”,
“id”: 000,
“host_id”: “host id”,
“host_email”: “host@domain.com”,
“topic”: “test 1”,
“type”: 2,
“status”: “waiting”,
“start_time”: “2022-02-07T08:16:24Z”,
“duration”: 30,
“timezone”: “Asia/Singapore”,
“agenda”: “test 2”,
“created_at”: “2022-02-07T08:16:24Z”,
“start_url”: “url here”,
“join_url”: “url here”,
“password”: “password”,
“h323_password”: “password”,
“pstn_password”: “password”,
“encrypted_password”: “password”,
“pmi”: “pmi here”,
“settings”: {
“host_video”: true,
“participant_video”: true,
“cn_meeting”: false,
“in_meeting”: true,
“join_before_host”: true,
“jbh_time”: 0,
“mute_upon_entry”: false,
“watermark”: false,
“use_pmi”: true,
“approval_type”: 2,
“audio”: “both”,
“auto_recording”: “none”,
“enforce_login”: false,
“enforce_login_domains”: “”,
“alternative_hosts”: “”,
“close_registration”: false,
“show_share_button”: false,
“allow_multiple_devices”: false,
“registrants_confirmation_email”: true,
“waiting_room”: false,
“request_permission_to_unmute_participants”: false,
“registrants_email_notification”: true,
“meeting_authentication”: false,
“encryption_type”: “enhanced_encryption”,
“approved_or_denied_countries_or_regions”: {
“enable”: false
},
“breakout_room”: {
“enable”: false
},
“alternative_hosts_email_notification”: true,
“device_testing”: false,
“focus_mode”: false,
“private_meeting”: false,
“email_notification”: true
},
“pre_schedule”: false
}

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.