FILL BLANK -
Fill in the blanks to complete the Python script to update the Webex Teams membership of a room using the Python requests library. import requests url = `https://api.ciscospark.com/v1/memberships/
Y2lzY29zcGFyazov379971079INISVAvOTJiM2RkOWEtNjc1ZC00YTQxLThjNDEtMmFiZGY4OWY0NGY0OjExNzJkNmYwLTJIYzMtMTFIOS1iOWI3LWNmMjg3M
TJhYTkzNw`
my_token = `AbCdEf123456`
payload = `{\n \`isModerator\`: true\n}`
headers = {
'Authorization': 'Bearer' + my_token,
'Content-Type': 'application/json'
}
response = requests. ___________ (`PATCH`, url, headers= ___________, data = ____________ ) print(response.text.encode('utf8'))
ThePokemonNuzlockingMaster
Highly Voted 11 months, 4 weeks agomacxsz
Most Recent 10 months, 4 weeks agodesignated
1 year, 2 months agodesignated
1 year, 2 months agoRosenkranz
1 year, 3 months agoNetMex
10 months agoNetMex
10 months ago