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
|`expand`| query | Comma-separated list of relations to eager-load |
148
+
|`search`| query | Full-text search query |
149
+
150
+
> **Note:** OData-style `$`-prefixed parameters (`$filter`, `$select`, `$orderby`, `$top`, `$skip`) are supported via the [OData endpoint](/docs/references/api/odata). The standard REST API uses unprefixed parameter names.
147
151
148
152
**Response**:
149
153
```json
@@ -157,7 +161,14 @@ Query records with filtering, sorting, selection, and pagination.
157
161
158
162
### `GET /data/:object/:id`
159
163
160
-
Get a single record by ID.
164
+
Get a single record by ID. Only `select` and `expand` query parameters are allowed; all other parameters are discarded.
165
+
166
+
| Parameter | Location | Description |
167
+
|:----------|:---------|:------------|
168
+
|`object`| path | Object name |
169
+
|`id`| path | Record ID |
170
+
|`select`| query | Comma-separated field names to include |
171
+
|`expand`| query | Comma-separated list of relations to eager-load |
0 commit comments