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

MOVE Backend

MOVE Backend APIs

PreviousPermission HandlingNextMOVE Admin API

Last updated 1 year ago

The most current version of the MOVE backend APIs can be found in . The base URL of the MOVE SDK is:

Applying the Swagger Specification

You can use the Swagger Swagger Specification as our most up-to-date documentation of the backend APIs. If you want to "Try it out" as offered in the Swagger Specification, please note that you need to "Authorize" your access to your MOVE project beforehand. There is a respective button on the top right of the Swagger:

  • Press "Authorize" in the Swagger

  • Use basicAuth

  • Username: corresponds to the project ID of your MOVE project, which you can find in "" of the MOVE dashboard.

  • Password: corresponds to your API key from the respective section in the . (Please note that any of your keys will work, but make sure it is "write only" = false).

In addition to using the Swagger Specification for human documentation you can use it to automatically generate your client. Use the Swagger generator of your programming language and your choice.

Authentication

The MOVE SDK uses Basic Authentication. The project id is your username, and the API Key is the password.

Example:

Authorization: Basic cHJvamVjdElkOmFwaUtleQ==

cHJvamVjdElkOmFwaUtleQ== is the string projectId:apiKey Base64 encoded.

API Keys can be found in the, it is also possible to create new ones there.

the Swagger documentation
https://sdk.dolph.in/
Configuration section
MOVE Dashboard
MOVE Dashboard