Single Table
To target a specific table with your request, add the table name (or Alias, if one has been set) to the end of the service URL. For example, the request below targets only the Cars table in the CompanyResources workspace:Individual Record
To target a single record within a table, add the table name to the end of the service URL. Then, add the primary key for the record in parentheses and single quotation marks. The example below targets the record with a primary key value of 1000 in the Cars table:$filter
You can use the $filter parameter to retrieve multiple entities based on a set of logic operators. The OData API supports the following operators. These must be provided in lowercase format as show below.| Operator | Meaning |
|---|---|
| eq | Equal |
| ne | Not Equal |
| gt | Greater than |
| ge | Greater than or Equal |
| lt | Less than |
| le | Less than or Equal |
| not | Negation |