Getting Started

Welcome to the iMBRACE App APIs! This guide will help you get started with building applications using our comprehensive API suite.

What are App APIs?

The iMBRACE App APIs provide a complete set of REST APIs that enable you to build custom applications that integrate with the iMBRACE platform. Use these APIs to create web applications, mobile apps, or integrate with existing systems.

Quick Setup

  1. Get API Access - Contact our team for API credentials

  2. Authenticate - Use OTP-based authentication to get access tokens

  3. Start Building - Use our APIs to build your custom applications

API Documentation

Explore our comprehensive API documentation:

🔐 Authentication & User Management

📊 Data Management

  • Board APIs - Create and manage data boards with custom fields and operations

💬 Communication

🤖 AI & Automation

  • AI Agent APIs - AI-powered automation and intelligent workflows

  • Workflow APIs - Business process automation and workflow management

👥 Team & Organization

  • Team APIs - Team management and role-based access control

  • Setting APIs - Message templates, email templates, and user management

Environments

Environment
Base URL
Purpose

Production

https://app-gateway.imbrace.co

Live environment

Demo

https://app-gateway.demo.imbrace.co

Testing environment

Development

https://app-gateway.dev.imbrace.co

Development environment

Authentication

# 1. Request OTP
curl -X POST https://app-gateway.imbrace.co/v1/backend/login/_signin_email_request \
  -H "Content-Type: application/json" \
  -d '{"email": "your-email@example.com"}'
  
# 2. Verify OTP and get access token
curl -X POST https://app-gateway.imbrace.co/v1/login/_signin_with_email \
  -H "Content-Type: application/json" \
  -d '{"email": "your-email@example.com", "otp": "123456"}'

Next Steps

  1. Start with Authentication - Set up OTP-based authentication

  2. Choose Your APIs - Select the APIs that match your use case

  3. Read the Documentation - Explore detailed endpoint documentation

  4. Build Your Application - Start integrating with our APIs

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

Last updated