Created
May 15, 2023 14:15
-
-
Save rposborne/8894ba45c48995dad09c2108a11ddb32 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"name": "MEETING_ERROR_SUCCESS", | |
"error_code": 0, | |
"description": "Start meeting successfully." | |
}, | |
{ | |
"name": "MEETING_ERROR_INCORRECT_MEETING_NUMBER", | |
"error_code": 1, | |
"description": "The meeting number is wrong." | |
}, | |
{ | |
"name": "MEETING_ERROR_TIMEOUT", | |
"error_code": 2, | |
"description": "Start meeting request timeout." | |
}, | |
{ | |
"name": "MEETING_ERROR_NETWORK_UNAVAILABLE", | |
"error_code": 3, | |
"description": "The network is unavailable." | |
}, | |
{ | |
"name": "MEETING_ERROR_CLIENT_INCOMPATIBLE", | |
"error_code": 4, | |
"description": "Zoom SDK version is too low." | |
}, | |
{ | |
"name": "MEETING_ERROR_NETWORK_ERROR", | |
"error_code": 5, | |
"description": "Network error." | |
}, | |
{ | |
"name": "MEETING_ERROR_MMR_ERROR", | |
"error_code": 6, | |
"description": "MMR server error." | |
}, | |
{ | |
"name": "MEETING_ERROR_SESSION_ERROR", | |
"error_code": 7, | |
"description": "Session error." | |
}, | |
{ | |
"name": "MEETING_ERROR_MEETING_OVER", | |
"error_code": 8, | |
"description": "Requested meeting already ended." | |
}, | |
{ | |
"name": "MEETING_ERROR_MEETING_NOT_EXIST", | |
"error_code": 9, | |
"description": "Meeting does not exist." | |
}, | |
{ | |
"name": "MEETING_ERROR_USER_FULL", | |
"error_code": 10, | |
"description": "The number of participants exceeds the upper limit." | |
}, | |
{ | |
"name": "MEETING_ERROR_NO_MMR", | |
"error_code": 11, | |
"description": "There is no MMR server available for the current meeting." | |
}, | |
{ | |
"name": "MEETING_ERROR_LOCKED", | |
"error_code": 12, | |
"description": "Meeting is locked." | |
}, | |
{ | |
"name": "MEETING_ERROR_RESTRICTED", | |
"error_code": 13, | |
"description": "Meeting is restricted." | |
}, | |
{ | |
"name": "MEETING_ERROR_RESTRICTED_JBH", | |
"error_code": 14, | |
"description": "Join meeting before the host is not allowed." | |
}, | |
{ | |
"name": "MEETING_ERROR_WEB_SERVICE_FAILED", | |
"error_code": 15, | |
"description": "Failed to request web service." | |
}, | |
{ | |
"name": "MEETING_ERROR_REGISTER_WEBINAR_FULL", | |
"error_code": 16, | |
"description": "The number of registers exceeds the upper limit of the webinar." | |
}, | |
{ | |
"name": "MEETING_ERROR_DISALLOW_HOST_REGISTER_WEBINAR", | |
"error_code": 17, | |
"description": "Registering the webinar with the host's email is not allowed." | |
}, | |
{ | |
"name": "MEETING_ERROR_DISALLOW_PANELIST_REGISTER_WEBINAR", | |
"error_code": 18, | |
"description": "Registering the webinar with the panelist's email is not allowed." | |
}, | |
{ | |
"name": "MEETING_ERROR_HOST_DENY_EMAIL_REGISTER_WEBINAR", | |
"error_code": 19, | |
"description": "The registration of the webinar is rejected by the host." | |
}, | |
{ | |
"name": "MEETING_ERROR_WEBINAR_ENFORCE_LOGIN", | |
"error_code": 20, | |
"description": "User needs to login if the user wants to join the webinar." | |
}, | |
{ | |
"name": "MEETING_ERROR_EXIT_WHEN_WAITING_HOST_START", | |
"error_code": 21, | |
"description": "User leaves the meeting when waiting for the host to start." | |
}, | |
{ | |
"name": "MEETING_ERROR_INVALID_ARGUMENTS", | |
"error_code": 99, | |
"description": "Meeting is failed due to invalid arguments." | |
}, | |
{ | |
"name": "MEETING_ERROR_UNKNOWN", | |
"error_code": 100, | |
"description": "Unknown error. Please seek help on Zoom Developer Forum." | |
}, | |
{ | |
"name": "MEETING_ERROR_INVALID_STATUS", | |
"error_code": 101, | |
"description": "Meeting API is taking a break. Please try again." | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment