I am trying to get a CVS file from a database using the rest API but I am only getting the top row of the CVS file
payload = "SELECT * FROM so WHERE num = 26254" headers = {'Content-Type': 'application/sql','Authorization': 'Bearer '+ Token } response = requests.request("GET", url, headers=headers, data=payload) data = response.text
when I run this function I want every row and column in the CSV file