You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
But /workflow-instances/recurring-latest doesn't have that structure and just shows the data array:
[
{ ... }
]
Not sure if this is intentional or not. One way I've seen around returning pagination details in the body (and having to wrap the actual body) is to do it in the response headers.
/tasks,/workflowsand/workflow-instancesshows a structure like this:{ "total_pages": 1, "page": 1, "count": 26, "data": [ { ... } ] }But
/workflow-instances/recurring-latestdoesn't have that structure and just shows the data array:[ { ... } ]Not sure if this is intentional or not. One way I've seen around returning pagination details in the body (and having to wrap the actual body) is to do it in the response headers.