LogoDev portal

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

  1. Get Access Token - Contact iMBRACE support for your organization's access token
  2. Configure Your Server - Set up your server or workflow engine to call iMBRACE APIs
  3. 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/boards

Environments

EnvironmentBase URLPurpose
Productionhttps://app-gateway.imbrace.co/3rd/Live environment
Demohttps://app-gateway.demo.imbrace.co/3rd/Testing environment
Developmenthttps://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

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_csv

Server 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_csv

Data Pipeline

# Automated data processing workflows
POST /3rd/boards/_fileupload
POST /3rd/boards/{board_id}/import_csv
GET /3rd/boards/{board_id}/export_csv

Next Steps

  1. Get Your Token - Contact iMBRACE support for access
  2. Read the Documentation - Explore detailed API documentation
  3. Set Up Your Integration - Configure your server or workflow engine
  4. Test Your Integration - Start with development environment
  5. Deploy to Production - Move to production when ready

Need help? Contact our support team for assistance with your server integration.