Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

To retrieve data from the metrics service, you will need a Token. You can obtain the token by sending a request to the email: yaro@ucsrkeeper.at.

 Also create a separate extended properties for the restaurant:

  • System NameGA_CUSTOM_ID
  • Types List — Restaurant.
    Image Added

In the Service > Stations and Devices directory for the restaurant, in the created extended property, specify ChampsID — the restaurant code in the global KFC system (data can be obtained from the Franchisee).
Image Added

Request:

Code Block
curl --location --request POST 'https://rk-platform-monitoring.rkeeper.com/api/v1/metrics/read' \
--header 'Authorization: Bearer <Token> \ The Token can be obtained by requesting at yaro@ucsrkeeper.at.
--header 'Content-Type: application/json' \
--data-raw '{
    "dateFrom": "2025-05-06T00:00:00Z",
    "dateTo": "2025-05-07T23:00:00Z",
    "cntFrom": 12000,
    "cntTo": 13000,
    "total": 100,
    "cashNetName": "KIOSK_1_STM",
    "champsID": "387K04",
    "objectCode": "527280004"
}'

...

  • dateFrom and dateTo — the time range for the metrics (from/to).
  • cntFrom and cntTo — the message counter range (field cnt).
  • total — the number of metrics to return in the response.
  • cashNetName — the kiosk name.
  • champsID — the kiosk's champsID.
  • objectCode — the kiosk object code.

 Also create a separate extended properties for the restaurant:

  • System NameGA_CUSTOM_ID
  • Types List — Restaurant.
    Image Removed

...

  • code

...

  • .

...


Code Block
titleПример ответа
[
     {
        "timestamp": "2025-07-08T14:57:51Z",
        "payload": {
            "typeData": "Time based event",
            "data": {
                "state": "Waiting window",
                "champsID": "234234234234211",
                "kioskName": {
                    "cashGuid": "{1E5C9B01-A065-48B0-882A-DDB46C22BC9C}",
                    "cashNetName": "RK7CASH004"
                },
                "kioskAppVersion": {
                    "back": " v0.0.383.21-rev.7b44ad92-j.42173",
                    "front": "0.0.330.21",
                    "theme": "KFCCee"
                },
                "objectCode": "199990001",
                "tagAB": "AAA"
            },
            "cnt": 21259
        }
    }
]

...