Labric Read Api
/api/v1/tools/read
Read records from a table.
Returns records from the specified table matching the given filters. Use 'single' mode to retrieve exactly one record, or 'multiple' mode to retrieve all matching records.
Body Parameters
filters: map[unknown]
Key-value filters to apply to the query.
target_name: string
The name of the table to read from.
Labric Read Api
curl https://platform.labric.co//api/v1/tools/read \
-H 'Content-Type: application/json' \
-H "Authorization: Bearer $LABRIC_API_KEY" \
-d '{
"filters": {
"foo": "bar"
},
"target_name": "target_name",
"target_type": "table"
}'
[
{
"foo": "bar"
}
]
Returns Examples
[
{
"foo": "bar"
}
]