Other Software
FREE – FMREST.PHP

What is the FileMaker Data API?

If you use PHP to access FileMaker data, you’re in the right place.

Starting with FileMaker version 17, FileMaker Server offers REST access to your FileMaker databases and has been gradually deprecating native PHP functionality.

If you use REST as part of your PHP solution, you would usually need to write a series of cURL functions and you would have to manually manage connecting & disconnecting from your server, and saving your tokens.

This is a pain!

We know it’s a pain, because we cut our teeth rolling REST functionality into soSIMPLE Calendar.

FREE fmREST.php

Simplifies & manages PHP connections to FileMaker’s REST-based Data API.

We created this class file to make it easier to manage dynamic REST sessions for soSIMPLE server and web products, and for our custom development. The goal of the class file was to help PHP developers start using the new REST engine as quickly and easily as possible.

We’ll also be updating it with new features. If you’d like to add something to it, please let us know.

What fmREST.php does:

Where do I get it?

(Update: this is now linked to our GitHub repository for better community participation.)

1. Install the file Install the class file by putting the file “fmREST.php” at the same location as your custom PHP page, or anywhere in your include path. Include the file in your php file by adding the line:
include_once (‘fmREST.php’);
And don’t forget to set the extended privilege for your FileMaker file.
2. Call the class:
$fm = new fmREST ($host, $db, $user, $pass [, $layout]);
You can also set the parameters separately
$fm = new fmREST ();
$fm -> host = ‘myhost.com’;
$fm -> db = ‘my database.fmp12’;
$fm -> user = ‘admin’;
$fm -> pass = ‘mySecretPassword’;   

Note: layout is now optional when setting up your connection. If you set it here, it will be used as a default for each function, or you can include the layout when calling the function.

3. Call your functions:

fmREST will automatically log in for you as necessary, as each function is called.

Important note: since we use a cookie to keep track of your token, your first function, or a specific call to the login function should be called before any visible content on the page.

How the functions work:

The functions that are part of this class use the same name and the same construct as the Data API. The only substantial difference is that you can pass the parameters as either JSON strings, or as PHP arrays. We find that native PHP arrays have been the easiest method.

For specific reference of the expected parameters, and results refer to the API documentation, located on your FileMaker Server. The documentation is located:

https:///fmi/data/apidoc/. There’s also a wealth of information here:

For FileMaker 17: https://fmhelp.filemaker.com/docs/17/en/dataapi/

For FileMaker 18: https://fmhelp.filemaker.com/docs/18/en/dataapi/

For FileMaker 19+: https://help.claris.com/en/data-api-guide/

Function Reference:

WORKING WITH EARLIER VERSIONS OF FILEMAKER: The class file is set to work with FileMaker 19 by default. To work with earlier versions, change the following two settings, right after $fm=new fmREST() call:
$fm -> version = “v1”;
$fm -> fmversion = 17;
LOGIN:
$result = $fm -> login ();
Notes:
LOGOUT:
$result = $fm -> logout ([token]);
Notes:
Validate Session:
$result = $fm -> validateSession ([token]);
Notes:
CREATE RECORD:
EXAMPLE:
$record[‘my_field_name’] = ‘my_field_value’;
$record[‘another field’] =  ‘another value’;
$data[‘fieldData’] = $record;
$data[‘script’] = ‘a script I want to run’;
$data[‘script.param.] = ‘a parameter to pass for the script above’;
$result = $fm -> createRecord ($data);
Notes:
DELETE RECORD:
FORMAT: $result = $fm -> deleteRecord ($recordId [, $layout]);
EXAMPLE:
$recordId = 1234;
$result = $fm -> deleteRecord ($recordId);
Notes:
EDIT RECORD:
FORMAT: $result = $fm -> editRecord ($recordId, $data [, $layout]);
RESULT:
$recordId = 1234;
$record[‘my_field_name’] = ‘my_field_value’;
$record[‘another field’] =  ‘another value’;
$data[‘fieldData’] = $record;
$result = $fm -> editRecord ($recordId, $data);
Notes:
GET RECORD:
FORMAT: $result = $fm -> getRecord ($recordId [, $parameters, $layout]);
EXAMPLE:
$recordId = 1234;
$parameters [‘script’] = ‘my script name’;
$parameters [‘script.param’] = ‘a parameter for that script’;
$result = $fm -> getRecord ($recordId, $parameters);
Notes:
GET RECORDS:
FORMAT: $result = $fm -> getRecords ($parameters [,$layout]);
EXAMPLE:
$parameters [‘_offset’] = 1;
$parameters [‘_limit’] = 50;
$parameters [‘script’] = ‘my script name’;
$parameters [‘script.param’] = ‘a parameter for that script’;
$result = $fm -> getRecords ($parameters);
Notes:
FIND RECORDS:
FORMAT: $result = $fm -> findRecords ($data [, $layout]);
EXAMPLE:
$request1[‘my_field_name’] = ‘my_field_value’;
$request1[‘another field’] =  ‘another value’;
$request2[‘my_field_name’] = ‘my_field_value’;
$query = array ($request1, $request2);
$data[‘query’] = $query;
$data[‘limit’] = 2;
$data[‘script’] = ‘find script’;
$data[‘script.param’] = ‘script parameter’;
$result = $fm -> findRecords ($data);
Notes:
UPLOAD CONTAINER:
FORMAT: $result = $fm -> uploadContainer ($recordId, $fieldName, $file [, $layout] );
EXAMPLE:
$recordId = 1234;
$fieldName = ‘container’;
$file = $_FILES[‘file’];
$result = $fm -> uploadContainer ($recordId, $fieldName, $file );
Notes:
SET GLOBAL FIELDS:
FORMAT: $result = $fm -> setGlobalFields ($data);
EXAMPLE:
$globals[‘my toc::my field’] = ‘my_field_value’;
$globals[‘another toc::another field’] =  ‘another value’;
$data[‘globalFields’] = $globals;
$result = $fm -> setGlobalFields ($data);
Notes:
EXECUTE A SCRIPT:
FORMAT:  $result = $fm -> executeScript ($scriptname [,$scriptparameter, $layout]);
EXAMPLE:
$result = $fm -> executeScript ($_REQUEST[‘Script’],$_REQUEST[‘Parameter’]);
Notes:
META DATA:
$result = $fm -> productInfo ();
$result = $fm -> databaseNames ();
$result = $fm -> layoutNames ();
$result = $fm -> scriptNames ();
$result = $fm -> layoutMetadata ([$layout]);
$result = $fm -> oldLayoutMetadata ([$layout]);
Notes:

DEBUGGING:

You now have three options for showing the debug output of fmREST.php:

SECURITY AND OTHER NOTES: fmREST automatically checks for a valid secure certificate. You can override this by setting the secure parameter to false like this: $fm -> secure = false; You should also use a secure connection to your PHP page using “https://”. If you don’t, the cookies won’t be set, and you will see multiple tokens/connections on your FileMaker Server. You can name your cookie whatever you’d like in your browser. By default it is named “fmtoken”. Change it like this: $fm -> token_name = “cookieName”; To work with FileMaker 17 or 18, change the following two settings:
$fm -> version = “v1”;
$fm -> fmversion = 17;