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
        • Forcing the Signal - Classic Bluetooth
      • 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

MOVE Assistance Notifier

Sends user alarms in emergencies.

  • manual (BCALL) - triggered in the mobile app whenever e.g. a user pushes an ALARM-button which calls the “initiate assistance call” service in the MOVE SDK

  • automatic (AID) - an Automatic Impact Detection can be configured as part of the MOVE features. Whenever a serious impact is detected during a car trip, the MOVE SDK sends an automatic alarm with some additional data to contextualize the impact. The threshold helps to filter false positives.

AID

Automatic Impact Detection fields:

  • asi: This field assesses the potential risk to occupants during full-scale crash tests involving roadside safety hardware.

  • lon: Specifies the impact's longitudal position.

  • lat: Specifies the impact's latitudinal position.

  • axis: Describes whether the impact was frontal or longitudinal.

  • speed: Represents the current speed at the time of impact.

  • type: AID or BCALL

Example JSON:


"id": "cdfac1e3-39dd-4312-aa2b-9e4b6b5f1b49",
"projectId": 1000,
"userId": "2021030510",
"time": "2021-04-16T09:33:41.409927Z",
"type": "ASSISTANCE",
"data": {
  "asi": "1.2132596667716633",
  "lon": "16.407404",
  "axis": "LONGITUDINAL",
  "type": "AID",
  "lat": "48.179639",
  "speed": "0"
}

BCALL

Manual call for assistance

  • type: BCALL or AID

  • lon: Specifies the impact's longitudal position.

  • lat: Specifies the impact's latitudinal position.

  • speed: current speed

Example JSON:


"id": "cdfac1e3-39dd-4312-aa2b-9e4b6b5f1b49",
"projectId": 1000,
"userId": "2021030510",
"time": "2021-04-16T09:33:41.409927Z",
"type": "ASSISTANCE",
"data": {
  "lon": "20.943821",
  "type": "BCALL",
  "lat": "52.208246",
  "speed": "null"
}

PreviousMOVE Generic NotifierNextExample requests

Last updated 9 months ago