Returns the data of all pipeline stages with pagination.
Click on the image below to enlarge the demonstration in Postman.
Query Params description:
Filters: An array of objects where each object represents a filter applied to a query. Each object must contain the following keys:
field: The name of the field to be filtered.
operator: The comparison operator used for the filter.
value: The expected value for the specified field.
Page: An integer used to specify the page to be returned in the request. The maximum number of items per page is 15.
Search: A string used to search within the results of the request. It can match the value of any field, including partial information, such as the owner's first name.
Order by: A string that specifies the name of a field to be used as the sorting parameter. The sorting can be alphabetical or numerical, depending on the type of data the field contains.
Direction: A string that defines the sort order for the results. It can be asc for ascending or desc for descending. For direction to be effective, an orderBy field must be specified.
Query params example:
key | vallue |
---|---|
filters | [{"field":"sla","operator":">","value":"10"}] |
page | 1 |
search | "Elon" |
orderBy | "name" |
direction | "asc" |
URL example:
https://api.octapipe.com/databases/3786995b-f137-4d57-a80f-50655969031f/records?filters=[{"field":"sla","operator":">","value":"10"}]&page=1&search="Elon"&orderBy="name"&direction="asc"