Integration

REST API & Webhooks

Connect Flottix to your existing tech stack and automate workflows.

curl
curl -X POST "https://api.flottix.app/v1/assets/ast_123/checkout" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "assigned_to": "usr_890",
    "location_id": "loc_berlin"
  }'

// Response
{
  "data": {
    "id": "ast_123",
    "status": "deployed",
    "assigned_to": "usr_890"
  }
}

The Flottix Integration Engine

One centralized source of truth, two powerful ways to connect to it.

Flottix Data

Permissions Engine

API REST

Programmatic Control

Serveur MCP

AI Context

Programmable ITAM

Simple, intuitive API

The primary advantage of our REST API is absolute predictability. Every endpoint is strongly typed and documented via OpenAPI, allowing you to build robust automations, sync thousands of assets, and integrate Flottix into your existing CI/CD pipelines.

  • Deterministic programmatic control
  • High-volume data processing
  • Interactive OpenAPI/Swagger documentation
List Devices (GET) GET
curl -X GET "https://api.flottix.app/v1/assets?search=MacBook" \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "data": [
    {
      "id": "ast_123",
      "tag": "TAG-042",
      "name": "MacBook Pro 16",
      "status": "ready_to_deploy"
    }
  ]
}
Assign Device (POST) POST
curl -X POST "https://api.flottix.app/v1/assets/ast_123/checkout" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "assigned_to": "usr_890",
    "location_id": "loc_berlin"
  }'
{
  "data": {
    "id": "ast_123",
    "status": "deployed",
    "assigned_to": "usr_890"
  }
}

Interactive API Docs

Test endpoints directly from your browser.

Enterprise Security by Default

API Keys and Webhooks use the exact same strict security infrastructure as our frontend.

Role-Based Access Control

Scripts can only do what the underlying API key permits.

Granular Scopes

Limit API access to read-only or specific modules.

Immutable Audit Trails

Every API request is permanently logged.

Build ultimate IT automation

Get your API key today and start connecting.

Free plan available. Optional one-time 14-day Professional trial included.

SOC 2 In Progress
GDPR Compliant
99.9% Uptime