Skip to content

Authentication API Endpoints

About Authentication

Authenticate with the Lucit API by requesting a token from the /auth endpoint using the login token and secret for one of the tokens assigned to your app.

Authentication Flow

  1. Create a new app in Lucit Apps - Note your Application ID (AppIdV3)
  2. Generate a token and secret on the TOKENS tab
  3. Form a request to /auth with your AppIdV3 header, your token and your secret
  4. Store the resulting token - This is your Bearer token
  5. Send Bearer token with every request to other endpoints
  6. Test your token by making a request to the /status endpoint

Required Headers

Every authenticated request requires: - Authorization Header: Bearer {AuthToken} - App ID Header: AppIdV3: LCUID-LAP-********-****-****-****-************

Endpoints

Method Endpoint Description
POST /api/v3/auth POST auth

← Back to Main Index