Hi everyone,
I'm working with the perform_hierarchy_select
endpoint in the FSM OData API and trying to limit the number of records returned.
This is the code I’m trying to use:
{
"parameters": {
"query": {
"hierarchy_select": {
"attrs": {
"attr": [
"task.task_id",
"task.task_status"
]
},
"primary_table": "task",
"from": {
"table": ["task"]
},
"max_rows": 15
}
}
}
}