Getting Data
Getting Data from a Bloc
Gets all data from a bloc (without search filters)
Request Body
Name
Type
Description
{
"data": {
"0": {
"created_at": "2022-05-22 22:05:01",
"submitted_status": 1,
"user_id": "johndoe",
"field_1": "data",
"field_2": "more data",
"cartolytics_entry_row_id": 123456
},
"1": {
"created_at": "2022-05-22 22:06:03",
"submitted_status": 1,
"user_id": "johndoe",
"field_1": "another record",
"field_2": "more data",
"cartolytics_entry_row_id": 123457
},
"2": {
"created_at": "2022-05-22 22:07:53",
"submitted_status": 1,
"user_id": "johndoe",
"field_1": "another record",
"field_2": "more data",
"cartolytics_entry_row_id": 123458
},
"3": {
"created_at": "2022-05-22 22:08:41",
"submitted_status": 1,
"user_id": "johndoe",
"field_1": "another record",
"field_2": "more data",
"cartolytics_entry_row_id": 123458
}
"count": 4,
"fieldCounts": {
"field_1": {
"another record": 2,
"data": 1
},
"field_2": {
"more data": 4
},
},
"countLimitInfo": {
"scan_limit": null,
"scan_limit_time_logged": null,
"scans_counted": 5,
"limit_reached": 0
},
"fieldNames": {
"field_1": "Field 1",
"field_2": "Field 2"
}
}
}Last updated