Skip to main content

Get last pings from specific Scanner of ScannerType

GET 

/scanner/:scanner_type_guid/instance/:scanner_guid/pings

Retrieves the ScannerPings from a specific Scanner of a specific ScannerType. If the limit is not set, it will return the last 10 pings.

Request

Path Parameters

    scanner_type_guid uuidrequired

    The guid of the ScannerType.

    scanner_guid uuidrequired

    The guid of the Scanner.

Body

Input data

    limit integer

    Default value: 10

    The amount of last pings to retrieve.

Responses

ScannerPings of Scanner found.

Schema

  • Array [

  • scanner_id uuidrequired

    The guid of the Scanner that is being pinged.

    created_at ISO 8601required

    The timestamp on which the ScannerPing was entered into the database.

    submitted_at ISO 8601required

    The timestamp on which the ScannerPing was originally submitted.

    name string

    The name of the Scanner that is being pinged.

    battery_percentage floatrequired

    The current battery_percentage of the Scanner.

    battery_status stringrequired

    Possible values: [charging, discharging]

    The current charging status of the battery of the Scanner.

    network_quality floatrequired

    Possible values: <= 100

    The percentage wise network quality of the Scanner.

    network_type stringrequired

    Possible values: [wifi, 1G, 2G, 3G, 3.5G, 4G, 4.5G, 5G, unknown]

    The type of network connection of the Scanner.

    latitude floatrequired

    The latitude in LatLng format of the Scanner location.

    longitude floatrequired

    The longitude in LatLng format of the Scanner location.

    precision integerrequired

    Possible values: <= 1000000

    The precision of said location.

  • ]

Loading...