rows
Search for rows
post/tables/{tableId}/rows/search
Path parameters
tableIdstring required
The ID of the table which this request is targeting.
Headers
x-budibase-app-idstring required
The ID of the app which this request is targeting.
Request body
Example request
{
"query": {
"string": {
"columnName1": "value",
"columnName2": "value"
},
"range": {
"columnName1": {
"low": 10,
"high": 20
}
},
"empty": {
"columnName1": ""
},
"contains": {
"arrayColumn": [
"a",
"b"
]
},
"notContains": {
"arrayColumn": [
"a",
"b"
]
},
"containsAny": {
"arrayColumn": [
"a",
"b"
]
}
}
}Response
The response will contain an array of rows that match the search parameters.