Update a meeting registrant's status by either approving, cancelling or denying a registrant from joining the meeting.**Scopes:** meeting:write:admin meeting:write ** Rate Limit Label https://marketplace.zoom.us/docs/apireference/ratelimits#ratelimits :** Medium

updateMeetingRegistrantStatus(
  meetingId,
  occurrence_id = NULL,
  action,
  registrants = NULL,
  return_response = F
)

Arguments

meetingId

The meeting ID in **long** format. The data type of this field is "long" represented as int64 in JSON .While storing it in your database, store it as a **long** data type and **not as an integer**, as the Meeting IDs can be longer than 10 digits.

occurrence_id

The meeting occurrence ID.

action

Registrant Status:approve Approve registrant.cancel Cancel previously approved registrant's registration.deny Deny registrant.

registrants

List of registrants.

return_response

Whether to return the response instead of the response content. Defaults to FALSE.