Object relations
Find rows by relation target
Returns rows on the source object linked to the target id via the relation.
get/public/v1/objects/{name}/relations/{relation}/target/{targetId}
Path parameters
namestring required
Example:deals
relationstring required
Example:companies
targetIdstring required
Example:65cf9b3a4b7c2a0012a3b4c5
Query parameters
pageinteger
Example:1
page_sizeinteger
Example:1
searchstring
Example:example
Response
Rows page
Example response
{
"ok": true,
"data": {
"rows": [
{
"id": "example",
"auto_id": 1,
"created_at": "example",
"updated_at": "example"
}
],
"total_count": 1,
"total_pages": 1,
"current_page": 1
}
}