Hello All I have a python script as below and i am getting the Resposne Status Code like"401", or"200".
response =requests.request("POST", url, headers=headers, data=payload, files=files)
print(response)..
But i have a requirement to get the not only response status code and i need to get the JSON output also, I have to pass the JSON output into another API Request.
Can someone help me on this
i tried
Print(response.json()), but it's not working.