Error 405 for Get Live Stream Details in ZoomGov

Description
I am a ZoomGov customer. When attempting to use this endpoint, I’m receiving a 405 Method Not Allowed error. My code is using the Zoom API to retrieve the upcoming meetings for a user(working) then looping through the resutls to check and update the custom url settings.

Updating a live stream works: PATCH https://api.zoomgov.com/v2/meetings/{meetingId}/livestream which returns a 204.

Which App Type (OAuth / Chatbot / JWT / Webhook)?
App type JWT

Which Endpoint/s?
GET https://api.zoomgov.com/v2/meetings/{meetingId}/livestream

How To Reproduce (If applicable)
Python Code:

def get_livestream_details(self, jwt_token, meeting_id):
    logger.info(f"Getting live streaming detail for {meeting_id}")
    url: str = f"{self.meetings_url}/{meeting_id}/livestream"
    response = requests.get(url,
                            headers={"Authorization": f"Bearer {jwt_token.decode('utf-8')}"})
    return response

Error is reproducable in Postman. See screenshot below

Screenshots (If applicable)

Hey @jturner421,

Thanks for reaching out about this and for providing these details.

Do you still get this error if you replace api.zoomgov.com with api.zoom.us? Can you also confirm if you’re using a custom streaming service (as opposed to FB, Youtube, etc.)?

Let me know—thanks,
Will

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