Each time an employee signs in or out, or moves between zones, they create a movement. Use the API to return all employee movements, or add or update a movement record.
Retrieves a list of all employee sign in/sign out events.
A comma separated list of tag:value search parameters, a colon separator performs an exact match, a percent separator performs a starts-with search and greater/less than search number/date ranges.
List of staff movement records
Access denied to this resource
Resource not found
Internal server error
curl -i -X GET \ 'https://api.whosonlocation.com/v1/staff/movement?q=string&order=string&limit=0' \ -H 'If-Modified-Since: string'
[- {
- "id": 167503,
- "created": "2021-09-09T12:52:31+12:00",
- "modified": "2021-09-09T13:52:31+12:00",
- "location_id": 301,
- "staff_id": 823431,
- "signed_in": "2021-09-09T12:52:31+12:00",
- "signed_out": "2021-09-09T14:52:31+12:00",
- "mode_in": "Sign In/Out Manager",
- "mode_out": "Sign In/Out Manager",
- "signed_in_by": 823431,
- "signed_out_by": 823431,
- "scanned_in": "string",
- "scanned_out": "string",
- "expected": true,
- "assistance": false,
- "accessdenied": false,
- "loneworker": true,
- "so_staff_id": 584,
- "zone_id": 8,
- "interzone": true,
- "remote": false,
- "name": "Harold Brunning",
- "title": "Mr",
- "email": "staff.movement@whosonlocation.com",
- "mobile": "+1 206 555 0123",
- "phone": "+1 206 555 0123",
- "lacp_in_name": "Ground floor entry",
- "lacp_out_name": "Ground floor entry",
- "signed_in_lat": "Latitude-value of coordinates for sign-in (Decimal Degrees)",
- "signed_in_lon": "Longitude-value of coordinates for sign-in (Decimal Degrees)",
- "signed_in_accuracy": "Precision for sign-in coordinates",
- "signed_out_lat": "Latitude-value of coordinates for sign-out (Decimal Degrees)",
- "signed_out_lon": "Longitude-value of coordinates for sign-out (Decimal Degrees)",
- "signed_out_accuracy": "Precision for sign-out coordinates"
}
]
Creates or updates an employee movement record.
Data required to create or update an employee movement:
Updated movement
Access denied to this resource
Internal server error
{- "onsite_status": "onsite",
- "location_id": 38,
- "location": "Head Office",
- "staff_id": 201,
- "lacp_id": 201,
- "zone_id": 201,
- "remote": false,
- "changed_at": "2021-11-25 22:01:09",
- "print_kiosk_id": 301
}
{- "id": 167503,
- "created": "2021-09-09T12:52:31+12:00",
- "modified": "2021-09-09T13:52:31+12:00",
- "location_id": 301,
- "staff_id": 823431,
- "signed_in": "2021-09-09T12:52:31+12:00",
- "signed_out": "2021-09-09T14:52:31+12:00",
- "mode_in": "Sign In/Out Manager",
- "mode_out": "Sign In/Out Manager",
- "signed_in_by": 823431,
- "signed_out_by": 823431,
- "scanned_in": "string",
- "scanned_out": "string",
- "expected": true,
- "assistance": false,
- "accessdenied": false,
- "loneworker": true,
- "so_staff_id": 584,
- "zone_id": 8,
- "interzone": true,
- "remote": false,
- "name": "Harold Brunning",
- "title": "Mr",
- "email": "staff.movement@whosonlocation.com",
- "mobile": "+1 206 555 0123",
- "phone": "+1 206 555 0123",
- "lacp_in_name": "Ground floor entry",
- "lacp_out_name": "Ground floor entry",
- "signed_in_lat": "Latitude-value of coordinates for sign-in (Decimal Degrees)",
- "signed_in_lon": "Longitude-value of coordinates for sign-in (Decimal Degrees)",
- "signed_in_accuracy": "Precision for sign-in coordinates",
- "signed_out_lat": "Latitude-value of coordinates for sign-out (Decimal Degrees)",
- "signed_out_lon": "Longitude-value of coordinates for sign-out (Decimal Degrees)",
- "signed_out_accuracy": "Precision for sign-out coordinates"
}
Retrieves a single employee movement record, filtering with the provided ID.
A staff movement record
Access denied to resource
Resource not found
Internal server error
curl -i -X GET \ https://api.whosonlocation.com/v1/staff/movement/:id
{- "id": 167503,
- "created": "2021-09-09T12:52:31+12:00",
- "modified": "2021-09-09T13:52:31+12:00",
- "location_id": 301,
- "staff_id": 823431,
- "signed_in": "2021-09-09T12:52:31+12:00",
- "signed_out": "2021-09-09T14:52:31+12:00",
- "mode_in": "Sign In/Out Manager",
- "mode_out": "Sign In/Out Manager",
- "signed_in_by": 823431,
- "signed_out_by": 823431,
- "scanned_in": "string",
- "scanned_out": "string",
- "expected": true,
- "assistance": false,
- "accessdenied": false,
- "loneworker": true,
- "so_staff_id": 584,
- "zone_id": 8,
- "interzone": true,
- "remote": false,
- "name": "Harold Brunning",
- "title": "Mr",
- "email": "staff.movement@whosonlocation.com",
- "mobile": "+1 206 555 0123",
- "phone": "+1 206 555 0123",
- "lacp_in_name": "Ground floor entry",
- "lacp_out_name": "Ground floor entry",
- "signed_in_lat": "Latitude-value of coordinates for sign-in (Decimal Degrees)",
- "signed_in_lon": "Longitude-value of coordinates for sign-in (Decimal Degrees)",
- "signed_in_accuracy": "Precision for sign-in coordinates",
- "signed_out_lat": "Latitude-value of coordinates for sign-out (Decimal Degrees)",
- "signed_out_lon": "Longitude-value of coordinates for sign-out (Decimal Degrees)",
- "signed_out_accuracy": "Precision for sign-out coordinates"
}