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:

  • name - 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": {
      "name": "FileMaker Data API Engine",
      "dateFormat": "MM/dd/yyyy"
      "timeFormat": "HH:mm:ss"
      "timeStampFormat": "MM/dd/yyyy HH:mm:ss"
    }
  },
  "messages": [
    {
      "code": "0",
      "message": "OK"
    }
  ]
}