Artboard
FileMaker Files

Decrypt FM File

POST
/otto/api/fm-file/decrypt

Request Body

application/json

POST /otto/api/fm-file/decrypt Request body

username?string
password?string
encryptionKey?string
force?boolean
sourceFile*string

File name to decrypt in the FileMaker format

inPlace*boolean

Whether to decrypt the file in place

Response Body

application/json

application/json

curl -X POST "https://your.server.net/otto/api/fm-file/decrypt" \  -H "Content-Type: application/json" \  -d '{    "username": "string",    "password": "string",    "encryptionKey": "string",    "force": true,    "sourceFile": "string",    "inPlace": true  }'
{
  "response": {
    "ok": true,
    "message": "string"
  },
  "messages": [
    {
      "code": 0.1,
      "text": "ok"
    }
  ]
}
{
  "response": {},
  "messages": [
    {
      "code": 18011,
      "text": "OttoFMS sample error"
    }
  ]
}