Dolphin MOVE SDK
2.x
2.x
  • Introduction
  • MOVE Services
  • MOVE SDK
    • Getting Started
      • MOVE Dashboard
        • Access Control
        • Configuration
        • Timeline
        • Points of Interest
      • Android
        • Installation
        • Quick Start
      • iOS
        • Installation
        • Quick Start
        • Troubleshooting
      • React Native
      • Flutter
      • Move SDK CLI
    • API Interface
      • Android
        • Initialization
        • Services
      • iOS
        • Initialization
        • Setup
        • Services
      • React Native
        • Components
        • Initialization
        • Services
      • Flutter
        • Initialization
        • Services
    • Models
      • Listeners/Callbacks
      • MoveAssistanceCallStatus
      • MoveAuth
      • MoveAuthError
      • MoveAuthResult
      • MoveAuthState
      • MoveConfig
      • MoveConfigurationError
      • MoveDevice
      • MoveDeviceStatus
      • MoveGeocodeError
      • MoveHealthItem
      • MoveHealthScore
      • MoveOptions
        • DeviceDiscovery
      • MoveSdkState
      • MoveSdkAndroidConfig
      • MoveTripState
      • MoveScanResult
      • MoveServiceFailure
      • MoveServiceWarning
      • MoveShutdownResult
    • Appendix
      • Token refresh
      • Android
        • Permission Handling
          • Permission Overview
          • Runtime Permissions
        • Battery optimization
        • Notification Management
      • iOS
        • Permissions Handling
        • App Store
      • React Native
        • Permission Handling
  • MOVE Backend
    • MOVE Backend
      • MOVE Admin API
      • MOVE TIMELINE API
      • MOVE State API
      • MOVE Last Location API
    • MOVE Generic Notifier
    • MOVE Assistance Notifier
    • Example requests
  • FAQ
  • Changelog
    • Android
    • iOS
    • React
    • Flutter
    • Backend
  • Data privacy (GDPR)
Powered by GitBook
On this page
  1. MOVE Backend
  2. MOVE Backend

MOVE State API

MOVE Backend APIs

PreviousMOVE TIMELINE APINextMOVE Last Location API

Last updated 8 months ago

Returns a list of state changes over the given time range.

For the STATUS property the possible values are:

  • UNINITIALISED - initial state

  • READY - after initialisation / setup or after stopAutomaticDetection ( / / / )

  • RUNNING - after calling startAutomaticDetection ( / / / )

history

GET https://sdk.dolph.in/v20/state/history

Returns a list of state changes over the given time range.

For the STATUS property the possible values are:

Path Parameters

Name
Type
Description

String

Query Parameters

Name
Type
Description

projectId*

Integer

userId*

String

properties

String

A comma separated list of state properties that shall be returned. At the moment the only possible value is 'STATUS'

from

integer

A unix timestamp, start of query range.

to

integer

A unix timestamp, end of query range.

limit

integer

Maximum number of items to return, must be greater than or equal to zero.

Headers

Name
Type
Description

Authorization*

String

Basic <ProjectId>:<API-Key>

{
  "history": [
    {
      "data": {
        "STATUS": "RUNNING"
      },
      "timestamp": "2022-07-20T05:38:10.586Z"
    },
    {
      "data": {
        "STATUS": "READY"
      },
      "timestamp": "2022-07-20T04:38:10.586Z"
    },
    {
      "data": {
        "STATUS": "UNINITIALISED"
      },
      "timestamp": "2022-07-20T03:38:10.586Z"
    }
  ]
}
iOS
iOS
Flutter
Flutter
React
React
Android
Android