Skip to content

API Documentation

Welcome to the LogiDAV REST API documentation. This section provides comprehensive documentation for all exposed REST API endpoints.

Overview

LogiDAV exposes 28 API endpoints across 8 controllers organized into three main areas:

  • Core API: General sales, SAV, and customer operations (17 endpoints)
  • Chatbot API: Customer support chatbot integration (5 endpoints)
  • Supplier APIs: AsirGroup and Notio supplier integrations (6 endpoints)
  • Core API


    Sales operations, SAV management, and contact leads

    17 endpoints for order management and customer service

  • Chatbot API


    Customer support chatbot integration

    5 endpoints with custom X-API-Token authentication

  • Supplier APIs


    AsirGroup and Notio supplier integrations

    6 endpoints for supplier order management

  • Authentication


    Authentication methods and security best practices

    Token Bearer, X-API-Token header, and public endpoints

Authentication Methods

LogiDAV APIs support three authentication methods:

1. Token Authentication (Primary)

Most endpoints use Bearer token authentication:

Authorization: Bearer {token}

2. Custom API Token (Chatbot)

Chatbot endpoints use a custom header:

X-API-Token: {api_token}

3. Public Endpoints

Some endpoints like SAV form retrieval are publicly accessible without authentication.

For detailed authentication information, see Authentication Guide.

Base URL

All API endpoints use the base URL:

https://api.menzzo.fr

Response Format

All endpoints return JSON responses with consistent structures:

Success Response:

{
  "success": true,
  "data": { ... }
}

Error Response:

{
  "success": false,
  "error": "Error type",
  "message": "Detailed error message"
}

Getting Started

  1. Choose your API: Browse Core API, Chatbot API, or Supplier APIs
  2. Review authentication: Check Authentication Guide for your endpoint
  3. Test with cURL: Each endpoint includes ready-to-use cURL examples
  4. Handle errors: Follow standard error handling patterns

Additional Resources

Support

For API support or integration questions:


Last Updated: 2026-01-23 | Version: 1.0.0