Baserow select row by id

Im selecting the id, and on click list view, pass the id from db - baserow…

the problem is, after click on list view, get row the line…

my block selecting the id by click on list view…

after selecting, how do i get the line on base row?

soo thank you!!

What is global id2 ? When Baserow got row do you get values ?

image

its a list of all ids in baserow

im trying this

blocks (8)
but dont get the values on baserow…

If not you can use rest API method to get value by row I’d

curl \
-X GET \
-H "Authorization: Token YOUR_API_KEY" \
https://api.baserow.io/api/database/rows/table/7670/{row_id}/?user_field_names=true
1 Like

ill try man, thank you!!

1 Like

You can see more in baserow documentation

https://baserow.io/api-docs/database/4293

1 Like

hey man, i solve on this form, using got all rows…but i think its not soo good couse the code get all things on table and select one…i think its heavy…but its ok…

ive try use this

curl \
-X GET \
-H "Authorization: Token YOUR_API_KEY" \
https://api.baserow.io/api/database/rows/table/33536/{row_id}/?user_field_names=true

but get all rows…if you have some example to get with this code…thank you… im confused…

This post was flagged by the community and is temporarily hidden.