I was running tests to create different meetings using POST/users/{userID}/meetings and ran into status code 400. The body is
{“code”:-1,“message”:“Duplicate entry ‘156281624’ for key ‘meeting_number’”}
I am confused about the returned message. Status 400 does not appear in the docs.
The payload to my request looks like:
{
“topic”: “%v”,
“type”: 2,
“start_time”: “%v”,
“duration”: %v,
“timezone”: “UTC”,
“settings”: {
“host_video”: true,
“participant_video”: true,
“cn_meeting”: false,
“in_meeting”: false,
“join_before_host”: true,
“mute_upon_entry”: false,
“watermark”: false,
“use_pmi”: false,
“approval_type”: 1,
“registration_type”: 1,
“audio”: “both”,
“auto_recording”: “none”,
“enforce_login”: false,
“registrants_email_notification”: false
}
}