Get product information

To retrieve product information about the host, use an HTTP GET method with the productInfo API endpoint.

HTTP method

GET

URL

Format: /fmi/data/version/productInfo

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

HTTP header

None

Parameters None
Response

A messages array showing an error code of 0. See Error responses.

A response body with the following metadata:

  • buildDate - the build date for the FileMaker Data API engine

  • name - FileMaker Data API Engine

  • version - the version number for the FileMaker Data API engine

  • dateFormat - the date format in use on the host

  • timeFormat - the time format in use on the host

  • timeStampFormat - the timestamp format in use on the host

For example:

Copy
{
  "response": {
    "productInfo": {
      "buildDate": "01/30/2020"
      "dateFormat": "MM/dd/yyyy"
      "timeStampFormat": "MM/dd/yyyy HH:mm:ss"
      "version": "19.0.1.30"
      "timeFormat": "HH:mm:ss"
      "name": "FileMaker Data API Engine"
    }
  },
  "messages": [
      {
          "code": "0",
          "message": "OK"
      }
  ]
}