Getting Started
Welcome to the iMBRACE Server Gateway! This guide will help you get started with our server-to-server API integration.
What is Server Gateway?
The Server Gateway provides APIs that allow your server or workflow engine to call iMBRACE services directly. This is designed for:
- Server-to-Server Integration - Your backend systems calling iMBRACE APIs
- Workflow Engine Integration - Workflow engines like n8n, Zapier, or custom systems
- Data Synchronization - Automated data flow between your systems and iMBRACE
- Bulk Operations - Processing large datasets programmatically
Quick Setup
- Get Access Token - Contact iMBRACE support for your organization's access token
- Configure Your Server - Set up your server or workflow engine to call iMBRACE APIs
- Start Integrating - Begin calling iMBRACE services from your systems
Authentication
Server Gateway uses token-based authentication. Include your token in every request:
curl -H "x-access-token: your-access-token-here" \
-H "Content-Type: application/json" \
https://app-gateway.dev.imbrace.co/3rd/boardsEnvironments
| Environment | Base URL | Purpose |
|---|---|---|
| Production | https://app-gateway.imbrace.co/3rd/ | Live environment |
| Demo | https://app-gateway.demo.imbrace.co/3rd/ | Testing environment |
| Development | https://app-gateway.dev.imbrace.co/3rd/ | Development environment |
API Documentation
📊 Data Board APIs
- Data Board Management - Complete data board operations, CRUD operations, field management, and bulk data processing
🤖 AI Agent Server Gateway APIs
- AI Agent Server Gateway APIs - Complete AI Agent operations, RAG operations, and ECharts operations
Common Use Cases
Workflow Engine Integration
# Your workflow engine calls iMBRACE APIs
POST /3rd/boards/create/brd_123/board_items
PUT /3rd/boards/update/brd_123/board_items
GET /3rd/boards/brd_123/export_csvServer Integration
# Your server synchronizes data with iMBRACE
GET /3rd/boards/{board_id}/board_items
POST /3rd/board_search/{board_id}/search
POST /3rd/boards/{board_id}/import_csvData Pipeline
# Automated data processing workflows
POST /3rd/boards/_fileupload
POST /3rd/boards/{board_id}/import_csv
GET /3rd/boards/{board_id}/export_csvNext Steps
- Get Your Token - Contact iMBRACE support for access
- Read the Documentation - Explore detailed API documentation
- Set Up Your Integration - Configure your server or workflow engine
- Test Your Integration - Start with development environment
- Deploy to Production - Move to production when ready
Need help? Contact our support team for assistance with your server integration.
Server Gateway
Server-to-server API integration for iMBRACE platform. Connect your backend systems, workflow engines, and data pipelines with iMBRACE services.
AI Agent
AI Agent APIs enhance user interaction by providing intelligent automation and decision-making support. These APIs allow you to integrate AI-driven features into workflows such as automated approval, task assignments, and user interactions through chat-based interfaces.
Dev portal