Save Dedicated Setting data
Use the following endpoint to store product-specific setting data for the current Device/Operation:
POST https://app.airngin.com/Api/v1.0/DeviceProject/SaveDeviceSettingForDevice
Pass the temporary token as a Bearer token and send:
projectIddeviceSerialoperationIdvalue— your product-defined setting payload; JSON is recommended.
The saved value is later delivered to the Device through the Direct Device setting topic:
projectCode/DeviceSetting/{serial}
Logical payload example:
{
"deviceSerial": "AIRN1234567890",
"operationName": "saveSetting",
"value": "{"mode":"auto"}"
}
DeviceSetting is specifically for Dedicated Device Settings. Do not confuse it with the separate in-device scenario topics SendScenarioSetting and ReceiveRunScenario.