Artboard
FileMaker Files

Reset file UUID on FM File

Requires FileMaker Server 20.3 or later. This endpoint will reset the file UUID on a FileMaker file.

POST
/otto/api/fm-file/reset-file-uuid

Request Body

application/json

POST /otto/api/fm-file/reset-file-uuid Request body

encryptionKey?string

Optional encryption key

password?string

FileMaker password

username?string

FileMaker username

sourceFilePath*string

File path to reset file UUID for in the FileMaker format

Response Body

application/json

application/json

curl -X POST "https://your.server.net/otto/api/fm-file/reset-file-uuid" \  -H "Content-Type: application/json" \  -d '{    "password": "string",    "username": "string",    "sourceFilePath": "string"  }'
{
  "messages": [
    {
      "code": 0,
      "text": "ok"
    }
  ],
  "response": {}
}
{
  "messages": [
    {
      "code": 18011,
      "text": "OttoFMS sample error"
    }
  ],
  "response": {}
}