Integrations

Bring Formiq workflows into your own product stack.

The integrations page introduces the Formiq SDK for teams that want to embed Formiq capabilities into their own systems. Instead of sending users elsewhere, you can place the board editor experience inside your product with the published SDK package.

Built around the published @francistinao/formiq-sdk package

Useful for custom dashboards, internal tools, and partner platforms

Keeps the editing workflow inside your own application experience

Formiq SDK

Embed the board editor into your own app

Install

pnpm add @francistinao/formiq-sdk

import { FormiqProvider, BoardEditor } from '@francistinao/formiq-sdk'
import '@francistinao/formiq-sdk/styles.css'

Usage

<FormiqProvider token="your-token">
  <BoardEditor boardId="your-board-id" />
</FormiqProvider>
Process

How it works in practice

1

Install the SDK package

Add the SDK to your application using npm, yarn, or pnpm.

2

Wrap your app with the provider

Use the SDK provider and pass your token so the embedded components can authenticate.

3

Mount the board editor

Render the editor in your own interface and connect it to the board you want users to manage.