Skip to content

Get Device Info

METHOD NAME getDeviceInfo

Description

Get Info on the device.

Parameters

null

Result

Object on success

  • appVersion string
    Synqpay application version
  • brand string
    Device brand name
  • model string
    Device model name
  • serialNumber string
    Device serial number
  • firmware string
    Device OS firmware
  • localIP string
    Local IP address if connected to local network
  • ssid string
    WiFi SSID - if connected to a WiFi network
  • time string
    Device current time. Timestamp in RFC 3339 format with offset.

Errors

None

Example

Request

1
2
3
4
5
{
  "jsonrpc": "2.0",
  "id": "1234567890",
  "method": "getDeviceInfo"
}

Response

{
    "jsonrpc": "2.0",
    "id": "59b95675-2bed-48e2-86bc-a5c4f4f3b432",
    "result": {
        "appVersion": "1.0.0",
        "brand": "ingenico",
        "firmware": "1.12.0",
        "localIP": "10.100.102.129",
        "model": "DX8000",
        "serialNumber": "235JKD8B2961",
        "ssid": "gefiltePhish24",
        "time": "2024-11-13T13:28:11.825+03:00"
    }
}