Get a range of records
To get a range of records, use an HTTP GET method with the records
API endpoint specifying the database name, the layout, and additional information to specify a starting record and the number of records. Optionally, you can specify the sort order of the records. You can also specify portal information to limit the number of related records that are returned.
HTTP method |
GET |
URL |
Format 1 (returns up to the first 100 records): Format 2 (returns a range of records): Format 3 (returns a sorted range of records): Format 4 (includes a range of records with a limited range of related records): version – the FileMaker Data API version requested can use
database-name – the name of the hosted database layout-name – the name of the layout to use as the context for getting the record For For For the For the portal keyword: portal-name-n is a portal containing the related records. A portal name can be either the object name shown in the Inspector in FileMaker Pro or the related table name. You can specify multiple portal names. The portal portion of the URL is optional. If the layout includes portals, you may want to specify the portal names for performance reasons. If the portal portion is omitted, the call will return all related records in all of the portals on the layout. For For If you want the response data in the context of a different layout, use the You can run FileMaker scripts as part of this request by including the |
HTTP header |
Authorization: Bearer session-token, where session-token is the unique X-FM-Data-Access-Token value for the database session |
Parameters | None |
Response |
The record data in JSON format and a messages array showing an error code of 0. Copy
See Error responses. |
Notes
-
You can use optional parameters to specify omit requests, the sort order, starting record (offset), number of records (limit), and portals for limiting the number of related records that are returned. The offset, limit, and sort parameters work on records found in the layout's table and not related portal records. To restrict the number of records and rows to display in a related set, specify the offset.portal-name and limit.portal-name parameters.
-
If you omit the offset and limit values, the default for offset is 1 and the default limit for records is 100:
_offset=1&_limit=100
-
If you omit the sortOrder keyword, the default is
ascend
. For example,&_sort=[{ "fieldName": "recordId" }]
is treated as:&_sort=[{ "fieldName": "recordId", "sortOrder": "ascend" }]
-
If you omit the offset and limit values for portal rows, the default for offset is 1 and the default limit for portal records is 50. A portal name can be either the object name shown in the Inspector in FileMaker Pro or the related table name.