Docs/Core/Integrations
Core

Integrations

Connect Inpera with your workflow tools.

2 min read

Integrations

Inpera integrates with popular project management and communication tools to streamline your feedback workflow.

Available Integrations

Issue Trackers

Integration Features
Jira Create issues, sync status, link annotations
Linear Create issues, two-way sync
GitHub Issues Create issues from annotations
Asana Create tasks from feedback
Trello Create cards in boards
Notion Create database entries

Communication

Integration Features
Slack Notification channels, annotation alerts
Discord Webhook notifications
Microsoft Teams Channel notifications

CI/CD

Integration Features
Jenkins Build status, deployment triggers

Setting Up Integrations

  1. Go to WorkspaceIntegrations
  2. Select the integration you want to connect
  3. Authorize access to your account
  4. Configure sync settings

How It Works

When you create an annotation in Inpera:

  1. Annotation is saved in Inpera
  2. If integration is configured, issue is created in external tool
  3. Status changes sync bidirectionally (where supported)
  4. Links are maintained between annotation and external issue

Integration Settings

Each integration can be configured per-project:

  • Auto-create issues: Automatically create issues for new annotations
  • Status mapping: Map Inpera statuses to external statuses
  • Default assignee: Set default issue assignee
  • Labels/Tags: Apply default labels to created issues

Webhooks

For custom integrations, use webhooks:

POST https://your-app.com/webhook
Content-Type: application/json

{
  "event": "annotation.created",
  "data": {
    "id": "annotation-id",
    "content": "Feedback text",
    "url": "https://example.com",
    ...
  }
}

See Webhooks documentation for full details.