Ali_Ali3
(Ali Ali)
October 15, 2025, 3:23am
1
Hello,
I am trying to do the following:
I have a login system. I want:
When a user register in my app , these data will storing in baserow:
user name
code login(unique code for each new user)
device id (after encryption)=unique
date of the first registration(formatted date..not important)
important register date second date (Clock time in milliseconds after conversion using Clock…)
I want, for example, that the code entered by users has a validity period of 6 months only, after which the user subscription will expire.
I already know the blocks to set the validity period, but my problem is how to get the second date value for a user with a specific code login.
I want to retrieve only the second date for a user with a given code login.
I do not want to retrieve all values from the table, because some users register at different times.
please Can you help me with the blocks in Baserow?
I tried using filter, but I don’t understand field ids; it seems very confusing and not practical.
Ali_Ali3
(Ali Ali)
October 15, 2025, 3:31am
2
Is this airtable? If so you can try FilterByFormula method of calling data after successful login.
No meed of row id
this block is used to call the whole table as a json list
[image]
here, after the Bearer there must be a space
[image]
this code is used to filter the row based on input condition ( must use Hypen at the end)
[image]
here,
1 denotes the col name
2 denotes the matching value in that col
[image]
in the above example, i want to look the row value so i am using the condition as Name col mathcing value as Name 417, and i expected the total row to display. As i guess i got the output.
[…
Did you read this?
Ali_Ali3
(Ali Ali)
October 15, 2025, 7:35am
4
now it’s baserow database
RaYzZz
(Gianluca Franco)
October 15, 2025, 10:00am
5
To communicate with Baserow, are you using an extension or a Web component?
RaYzZz
(Gianluca Franco)
October 15, 2025, 2:34pm
7
With the search function, you can look up the user’s UID, and it will return the entire row.
This block helps you to fetch such rows that contains given text. for ex, I have three rows in my table
Firstname
Lastname
Age
Jill
Smith
50
Eve
Jackson
94
John
Doe
80
And I used this block and searched Jill then the first row will be fetched and GotAllRows event will be triggered and if you searched j then all the rows will be fecthed as all row contains J letter in their cells. It is a type of filter that Baserow offers.
Ali_Ali3
(Ali Ali)
October 15, 2025, 3:34pm
8
but how to get the results
there is no event (when baserow after searched!!!)
Ali_Ali3
(Ali Ali)
October 15, 2025, 3:51pm
9
i think i must use lookup in pairs or get value for key in dictionary.. after got all rows ?
RaYzZz
(Gianluca Franco)
October 15, 2025, 4:47pm
10
Use a notifier and show me what you get.
1 Like
you will get result under the yellow event of When GotAllRows
also by using web block you can try usingthis formula.
https://your-baserow-instance/api/database/rows/table/ <table_id>/?filter___name=John, also can add multiple conditions without any extensions you can try..
1 Like
Ali_Ali3
(Ali Ali)
October 15, 2025, 5:36pm
12
done using got all rows
but i have a small mistake
The latest version(sumit extension) calls get columns(we must make a list), while in previous versions, one column was called in each block of Baserow(get column in text)
This means that when I use get columns instead of get each column and then later use is in list thing, it won’t work—while I should be using the if contain text block.
Ali_Ali3
(Ali Ali)
October 15, 2025, 5:39pm
13
thank you
whats you mean by (your baserow insrance)!!
i am really confusing
each extension work with different method
and sumit latest versions doesn’t accept get columns if i set max records above 200
other extensions work even if i set max record to 10000000
Ali_Ali3
(Ali Ali)
October 15, 2025, 5:40pm
14
does baserow get only first 200 records !??
if user will be 201 how i can make this available
Ali_Ali3
(Ali Ali)
October 15, 2025, 5:59pm
15
you mean
my instance baserow: baserow.io if i don’t have a private server
Ali_Ali3
(Ali Ali)
October 15, 2025, 6:08pm
16
with this method we must read baserow reset api documentation
because it is necessary to add field_id (when get value for key) instead of add name of the column ..
the problem now is he will give me the result of first result (index=1) not a specific result
Ali_Ali3
(Ali Ali)
October 15, 2025, 8:12pm
17
RaYzZz:
Web
I finally did it and succeeded !
Now you can call me the professional
without extension
web url:
https://api.baserow.io/api/database/rows/table/ (here table id)/?user_field_names=true
and wihtoud direct search
RaYzZz
(Gianluca Franco)
October 15, 2025, 8:15pm
18
That’s great, I’m glad!
Congratulations
and well done for sharing the solution so it can help others too.
1 Like