Get Business Object by Filter

Fetches business object records based on the defined filter values. For example, you can define to get only active incidents.

Base URL:

https://{tenant url}/api/odata/businessobject/{business object name}?$filter={filter field} eq {field value}

Ensure the business object name is suffixed with an "s".

Supported Operators

Only the following eight operators are supported when fetching business object records using the filter function:

eq - Returns true if the first value is equal to the second value.

ne - Returns true if the first value is not equal to the second value.

lt - Returns true if the first value is less than the second value.

le - Returns true if the first value is less than or equal to the second value.

gt - Returns true if the first value is greater than the second value.

ge - Returns true if the first value is greater than or equal to the second value.

or -Returns true if either one of its left or right sub-expressions evaluates to true.

and - Returns true if both its left and right sub-expwressions evaluate to true.

The data displayed in the Response Payload is only a sample data, it does not contain the full list of responses but only a few are shown for sample.

Unsuccessful Responses