Get a single record

To get a record, use an HTTP GET method with the records API endpoint specifying the database name, layout, and record ID. You can also specify portal information to limit the number of related records that are returned.

HTTP method

GET

URL

Format 1: /fmi/data/version/databases/database-name/layouts/layout-name/records/record-id

Format 2: /fmi/data/version/databases/database-name/layouts/layout-name/records/record-id?portal=["portal-name-n", ...] &_offset.portal-name=starting-record &_limit.portal-name=number-of-records

version – the FileMaker Data API version requested can use v1, v2, or vLatest

  • version 1 (v1) - the structure for returned portal data is based on the view setting (Form View or Table View) of the specified layout.

    • Form View - returns all related records

    • Table View - returns the first related record

    Note  Changing the view setting alters the portal data structure for the returned value.

  • version 2 (v2) - the structure for returned portal data is based on Form View.

  • latest version (vLatest) - the behavior is based on the last version of the API.

database-name – the name of the hosted database

layout-name – the name of the layout to use as the context for getting the record

record-id – the record ID of the record to get

For portals:

  • The portal portion of the URL is optional. If portal is omitted and the layout includes portals, the call will return related records from all of the portals on the layout. So, for better performance on layouts with portals, use portal to specify only the portals you need to get related records from.

  • Only the related records that are possible to view in a portal are returned. In the Portal Setup dialog in FileMaker Pro, these options can affect which records can be returned:

    • Allow vertical scrolling - If selected, all records that can be scrolled into view are returned. If deselected, only the number of records between Initial row and Number of rows (those that are visible without scrolling) are returned.

    • Filter portal records - If selected, only the filtered records are returned.

  • 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.

  • For _offset.portal-name-n, starting-record is the record number of the first portal record in the range of related records. If not specified, the default value is 1.

  • For _limit.portal-name-n, number-of-record specifies the maximum number of related records that should be returned. If not specified, the default value is 50.

Other optional URL parameters:

  • layout.response - Returns the response data in the context of a different layout. The specified layout should be for the same base table as the current layout. Specifying a layout for a different base table can produce unexpected results.

  • dateformats - Specifies the format of date and timestamp fields. The value is 0 for US formats, 1 for the file locale's formats, or 2 for ISO 8601 formats. If not specified, the default value is 0.

  • script.prerequest, script.presort, script - Runs FileMaker scripts as part of the request. See Run a script with another request.

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.

For example:

Copy
{
  "response": {
    "data": [ 
      ...  
    ]
  },
  "messages": [
    {
      "code": "0",
      "message": "OK"
    }
  ]
}

See Error responses.