MOVE Last Location API

MOVE Backend APIs

Returns the last known location of an SDK user. The context describes the location source. At the moment the following contexts exist:

  • TIMELINE-END: last timeline location

  • CAR-END: last car trip location

  • TRIP-POSITION: live updates during a trip

  • USERPOS: user position - reported about once per day (if OS wakes up app at all), independent of user timeline; NOTE may be older than e.g. timeline-end, so please check timestamp

  • TAG: Trip position can be tagged the context name is

    TAG:TAG_NAME

Last location

GET https://sdk.dolph.in/v20/location

Returns last position of each context

Query Parameters

NameTypeDescription

projectId *

integer

userId*

String

Headers

NameTypeDescription

Authorization*

String

Basic <ProjectId>:<API-Key>

[
  {
    "context": "string",
    "lat": 0,
    "lon": 0,
    "accuracy": 0,
    "timestamp": "2022-08-08T09:51:44.109Z"
  }
]

Last context location

GET https://sdk.dolph.in/v20/location/{context}

Returns last location of specific context

Path Parameters

NameTypeDescription

context*

String

timeline-end, car-end, userpos, trip-position

Query Parameters

NameTypeDescription

userId*

String

projectId*

String

Headers

NameTypeDescription

Authorization

String

Basic <ProjectId>:<API-Key>

{
  "context": "string",
  "lat": 0,
  "lon": 0,
  "accuracy": 0,
  "timestamp": "2022-08-08T09:37:46.648Z"
}

Last updated

Dolphin Technologies GmbH