Getting Started

To use the emnify REST API, you must authenticate with an Authentication Token. emnify uses JSON Web Tokens (JWTs) as the authentication token.

You can retrieve this authentication token using an application token generated in your emnify account.

The following pages cover the authentication basics, querying resources, and how to create and use application tokens for automating or scheduling recurring tasks.

Authentication

When the /api/v1/authenticate API is sent an application token, it returns an auth token used to authenticate all subsequent calls to the API via the Authorization header.

Authenticate with an Application Token
JWTs

JSON Web Tokens (JWTs) are a secure mechanism to authenticate all API calls via the Authorization header. This page describes how to obtain a JWT auth_token and how they are used in requests.

See how JWTs are used