Submit requests for new integrations to the Hazel team
The Integration Requests API allows users to submit requests for integrations that are not yet available in Hazel Chat. This helps the team prioritize and build integrations that the community needs.
Organizations can submit integration requests to express interest in connecting Hazel Chat with external platforms and services. The Hazel team reviews these requests to prioritize development.
import { integrationRequest } from "@hazel/domain/rpc"const request = await integrationRequest.create({ organizationId: "org_123", integrationName: "Jira", integrationUrl: "https://www.atlassian.com/software/jira", description: "We need Jira integration to track issues and link them to chat discussions"})
// Request Figma integrationawait integrationRequest.create({ organizationId: "org_123", integrationName: "Figma", integrationUrl: "https://www.figma.com", description: "Share design links with rich previews and get notifications for comments and updates"})// Request Notion integrationawait integrationRequest.create({ organizationId: "org_123", integrationName: "Notion", integrationUrl: "https://www.notion.so", description: "Link Notion pages to channels and get updates when pages are edited"})
After submitting a request, the Hazel team will review it and update the status:
pending - Request submitted, awaiting review
reviewing - Team is evaluating the request
planned - Integration is scheduled for development
implemented - Integration is now available
declined - Request was declined (with explanation)
You can track the status of your integration requests in your organization settings. The team may reach out for additional details about your use case.
Be specific about your use case. Instead of “we need Jira integration,” explain “we want to create Jira issues from messages and get status updates in our #engineering channel.”
Include the integration URL so the team can quickly understand what you’re requesting.
Popular requests from multiple organizations are prioritized. If an integration you need has already been requested, reach out to support to add your vote.