FLECS
HomeMarketplaceRessourcesGet started
Engineering
Engineering
  • API Docs
    • FLECS Console API
      • Welcome!
      • Quick Start
      • API Reference
        • Authentication
        • Users
        • Products
        • Device
        • Apps
    • FLECS Core API
      • API Reference
        • System
        • Device
        • Console
        • Instances
        • Apps
        • Jobs
  • App Publishing Guide
    • 💡Overview
    • 🪛How to create a FLECS app
    • 🚀How to release a FLECS app
    • 🧳App Publishing Packages
    • 📶Network
  • FLECS Core
    • Install FLECS Core Using Docker
  • White Labeling
    • Integrate views
    • On-premise hosting of apps
  • Service Mesh
    • Integrate flunder into your app
Powered by GitBook
On this page

Was this helpful?

  1. API Docs
  2. FLECS Core API
  3. API Reference

Console

PreviousDeviceNextInstances

Last updated 3 months ago

Was this helpful?

  • PUTSet the authentication information
  • DELETERemove the authentication information

Remove the authentication information

delete
Responses
204
No content
delete
DELETE /v2/console/authentication HTTP/1.1
Host: localhost
Accept: */*
204

No content

No content

Set the authentication information

put
Body
Responses
204
No content
400
Malformed request
application/json
put
PUT /v2/console/authentication HTTP/1.1
Host: localhost
Content-Type: application/json
Accept: */*
Content-Length: 186

{
  "user": {
    "ID": 1,
    "user_email": "name@gmail.com",
    "user_login": "text",
    "display_name": "text"
  },
  "jwt": {
    "token": "text",
    "token_expires": 1
  },
  "feature_flags": {
    "isVendor": true,
    "isWhitelabeled": true
  }
}

No content