# 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. &#x20;

#### 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:

```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&#x20;

* type: BCALL or AID
* lon: Specifies the impact's longitudal position.
* lat: Specifies the impact's latitudinal position.
* speed: current speed

Example JSON:

```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"
}
```

&#x20;


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.movesdk.com/move-platform/backend/move-assistance-notifier.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
