GeoFence

Description

GET [API_URL]/rpt_geofence

Obtain the entry and exit of the devices in geofences.

Call limit: 1 request every 15 seconds

Cache live time: 300 seconds

Headers

Name
Value

Content-Type

application/json

tenant

logicsat

Authorization

Bearer eyJhbGciOiJIUzI1NiIsInR...

Body

Name
Type
Description

pagination

IPagination

devices

string[]

devices name

geogences

string[]

geofences

idletime

integer

idle time in geofence

startdate*

datetime

from (YYYY-MM-DDTHH:mm:ss)

enddate*

datetime

to (YYYY-MM-DDTHH:mm:ss)

export interface IApiDev_RptGeofenceFilter {
    pagination?: IPageInfo;
    devices?: string[];
    geofences?: string[];
    idletime?: number;
    startdate: string;
    enddate: string;
}

Response

Last updated