All data sources

GeoForce

API keygeoforce

GPS tracking and asset management connector for GeoForce devices. Provides access to device telemetry, asset assignments, and location data.

Provenance

PublisherGeoForce

Freshness & coverage

FreshnessFreshness not declared
GeographicNot declared
TemporalNot declared
AuthenticationCredentials required (API key)

Methods (2)

  • listDevices

    read

    List devices; supports pagination and basic filtering

    Entitiesrecord
    Input schema
    {
      "type": "object",
      "properties": {
        "first": {
          "type": "number"
        },
        "after": {
          "type": "string"
        },
        "autoPaginate": {
          "type": "boolean"
        },
        "states": {
          "type": "array",
          "items": {
            "type": "string"
          }
        }
      },
      "additionalProperties": false
    }

    Use { first: 100 } (or smaller) to avoid huge payloads

  • getDeviceByEsn

    read

    Fetch a device by ESN

    Required paramsesn
    Entitiesrecord
    Input schema
    {
      "type": "object",
      "properties": {
        "esn": {
          "type": "string",
          "examples": [
            "123456789"
          ]
        }
      },
      "additionalProperties": false,
      "required": [
        "esn"
      ]
    }