BLOGS

overview

BASICS OF FILEMAKER DATA API INTEGRATION

Basics of FileMaker Data API Integration

The FileMaker Data API is an application programming interface (API) that allows web services to access data in hosted FileMaker solutions via HTTP requests. Because this API conforms to Representational State Transfer (REST) architecture, the FileMaker Data API is considered a RESTful API.

  1. The web server routes the request through the FileMaker Web Server Module to the FileMaker Data API Engine.
  2. The FileMaker Data API Engine converts the HTTPS request (URL and JSON data) into a format that the Database Server component can understand, and requests data from the database hosted by the Database Server.
  3. The FileMaker Data API Engine converts the FileMaker data into an HTTPS response (URL with JSON data) to respond to the call, passing the data back to the web server.
  4. The web server sends the HTTPS response to the requesting REST API client.
Basics of FileMaker Data API Integration

FEATURES

FileMaker’s API can be used to either interact with FileMaker data (Data API) or administrator FileMaker Server 17 and higher (Admin API).

ENABLING FILEMAKER DATA API

The first thing you need to do is to enable the API in FileMaker 19 Server’s admin console.

To enable FileMaker Data API settings:

  1. Open Admin Console, click the Connectors > FileMaker Data API tab.
  2. Set FileMaker Data API to Enabled.

FileMaker DATA API Process Flow: