Set Mod Setting

This endpoint requires Authentication.

Changes Fiscit Remote Monitoring Mod General Settings.

Request Body

Name Type Required? Description

<Mod Setting Name>

<Data Type for Setting>

True

New Value for the given setting.

Supported Settings

Setting Name

Type

Description

SplineSampleDistance

Float

Determines the accuracy of SplineData in Endpoints.

Response Body

Name Type Description

IsSent

Boolean

Mod setting has been applied.

Example Request

curl -X POST 'http://localhost:8080/setModSetting' \
-H 'Content-Type: application/json' \
-H 'X-FRM-Authorization: <your access token>' \
--data-raw '{ \
  "SplineSampleDistance": 55 \
}'

Example Response

[
  {
    "IsSent": true
  }
]