MOVE Backend

MOVE Backend APIs

The most current version of the MOVE backend APIs can be found in the Swagger documentation. The base URL of the MOVE SDK is: https://sdk.dolph.in/

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 "Configuration section" of the MOVE dashboard.

  • Password: corresponds to your API key from the respective section in the MOVE Dashboard. (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 MOVE Dashboard, it is also possible to create new ones there.

Last updated