I'm attempting to make an api call in django to a url.
#api call
url = "https://api.lemlist.com/api/team"
querystring = {"user":apikey}
response = requests.request("GET", url, params=querystring)
Lemlist shows that the following call can be made as follows, but its in a different language:
curl https://api.lemlist.com/api/team \
--user ":YourApiKey"
https://developer.lemlist.com/#authentication
With the python call noted above, I'm getting a 400 error.
Thanks!