Hello,
In some of the examples there is:
request = requests.post(constructed_url, headers=headers, json=body)
response = request.json()
Would it be possible to rename request for response (for example):
response = requests.post(constructed_url, headers=headers, json=body)
response = response.json()
I'm just mentioning it because post() returns a requests.models.Response object.
Regards