The documentation tell us how to get the list of tables, but how do i get data from a specific table? On the old API i use the (queryTables) endpoint but it does not work for the new API
Welcome to the community @Gabriel_Muller!
I guess then you should pass that table only in the query array.
Hey Dilon, thanks for the reply, i could find the endpoint but it does not find my table, my API call looks like this
I don’t think they have a method to do that yet in v2? Are you just exploring stuff? I would still stick with what works in v1.
They told me that computed columns may be available on new API so i’m already building my pipeline based on that to see if it works at somepoint
PS: The endpoint is https://api.glideapps.com/tables/{{your table id here}}/rows
And you do a GET request with that? Or still a POST? I can’t find it in their docs.
Yeap, instead of the post method on the old API, you should use the get method directly
import requests
url = “https://api.glideapps.com/tables/blablatableid/rows”
headers = {“Authorization”: “Bearer xxxxxxxxx”}
response = requests.request(“GET”, url, headers=headers)
print(response.text)
Thanks a lot! I mainly use cURL so can adjust based on that.
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.