Getting Data
Getting Data from a Bloc
Please Note: All Bloc Data User Restrictions will apply in these requests. If you are not getting data back or cannot access the bloc, please make sure the user who the Auth token was created for is not restricted to certain data, and please also make sure they have been given access to that bloc.
Gets all data from a bloc (without search filters)
GET
https://example.mydomain.com/api/get-data
Request Body
blocId*
integer
The ID of the bloc you want to get data from. This is the last number in the URL of the bloc, in this example it is 1234: https://example.mydomain.com/module/module-name/bloc/1234
resultLimit
integer
A limit on the number of results to receive back, This defaults to 10 if not provided.
currentPage
integer
If you have a 100 records with a result limit of 10, then currentPage 1 will get you records from 1 to 10, currentPage 2, will get you 11 to 20 and so on.
reverse
string
true
or false
- allows to determine whether you see oldest data first or newest data first, a true value gives you oldest data first.
fromDate
string
Date in the format of YYYY-MM-DD HH:MM:SS, e.g. 2022-05-22 22:04:23, only gets data after this date.
toDate
string
Date in the format of YYYY-MM-DD HH:MM:SS, e.g. 2022-05-22 22:10:23, only gets data before this date.
Last updated