Can anyone point me, having hard time resolving this, one id returned persistently

class JoinZoomMeeting(View):
def get(self, request, *args, **kwargs):
header = {“authorization”: f"Bearer {request.session[‘zoom_access_token’]}“, “Content-Type”:“application/json”}
url = “https://api.zoom.us/v2/users/me/meetings
list_meeting = requests.get(url, headers=header)
try:
meetingId = list_meeting.json()[‘meetings’][0]
# print(meetingId)
# for i in meetingId:
# print(i[‘id’])
header = {“authorization”: f"Bearer {request.session[‘zoom_access_token’]}”, “Content-Type”:“application/json”}
url = “https://api.zoom.us/v2/meetings/{}”.format(meetingId[‘id’])
meeting_detail = requests.get(url, headers=header)
args = meeting_detail.json()
# print(args[‘id’])
context = {
‘args’: args,
}
return render(request, ‘superadmin/lecturer/join-class.html’,context)

can someone help me look to was actually wrong here, i’m trying calling a get meeting from it api, but only the first row is returned, actually the index return the first row, but when i loop it actually didn’t get the record, was is actually missing here