GET Remote Reader API
  1. General
GET Remote Reader API
  • Basic Information
  • General
    • Get the configuration of the device
      GET
    • Cancel an active job
      GET
  • Status
    • Get the status of an asynchronous display operation on the device's screen (UI related)
      GET
    • Get the status of an asynchronous NFC tag interaction (NFC related)
      GET
  • POS
    • Start a job for a purchase
      POST
    • Initiate a refund job for a specific purchase
      POST
  • Ticketing
    • Start a job to swap a ticket to a NFC-tag
      POST
  • Display
    • Start a job to show information and interactive buttons on the device's UI
      POST
  • TagInfo
    • Start a job that prompts the end-user to scan an NFC tag
      POST
  1. General

Get the configuration of the device

GET
/api/config/v4
This endpoint returns the project-specific configuration of the device. This includes details such as the project name, unit name, site name, available payment types, and the credit-to-currency factor. The credit-to-currency factor is used to convert credits to the equivalent currency amount.

Request

Authorization
Send your HTTP requests with an
Authorization
header that contains the word Basic followed by a space and a base64-encoded string username:password
Example:
Authorization: Basic *****************

Responses

🟢200OK
application/json
The configuration of the device
Body

🟠401Unauthorized
🟠405405
🔴500Server Error
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request GET 'https://192-168-1-1.xip.get.systems:9443/api/config/v4' \
--header 'Authorization: Basic <encoded-value>'
Response Response Example
200 - Example 1
{
    "data": {
        "projectName": "GET Roadshow 2025",
        "unitName": "Beverage",
        "siteName": "Bar Mainstage Left",
        "deviceId": "AMUU-Z",
        "creditsSymbol": "CDTS",
        "currencySymbol": "€",
        "decimalSeparator": ".",
        "decimalPlacesCredits": 2,
        "decimalPlacesCurrency": 2,
        "creditToCurrencyFactor": "1",
        "paymentTypes": [
            {
                "id": "4eda6f3c-d75c-489f-b7b5-6fc71a67ef27",
                "name": "Cashless",
                "type": "Cashless"
            }
        ]
    }
}
Modified at 2025-02-13 14:31:55
Previous
Basic Information
Next
Cancel an active job
Built with