Skip to main content
Glama
company-removed.ts2.19 kB
import { createTrigger, Property, TriggerStrategy, } from '@activepieces/pieces-framework'; import { folkAuth } from '../common/auth'; import { folkClient } from '../common/client'; import { folkProps } from '../common/props'; export const companyRemoved = createTrigger({ auth: folkAuth, name: 'company_removed', displayName: 'Company Removed', description: 'Fires when a company is removed from your Folk workspace.', props: { groupId: folkProps.group_id(false, 'Group ID'), }, sampleData: { id: 'evt_6004f2ef-dcc3-4c56-a704-9326730ad100', type: 'company.deleted', createdAt: '2025-09-30T09:55:52.715Z', source: 'https://api.folk.app/v1/webhooks/wbk_2f15ec4f-0f70-4884-a43d-1f88ef7a6665', data: { id: 'com_05837e2d-9bf7-4f17-8729-e95f1be4de67', url: 'https://api.folk.app/v1/companies/com_05837e2d-9bf7-4f17-8729-e95f1be4de67', details: { name: 'ACME Inc.', emails: ['hello@acme.com'], }, }, }, type: TriggerStrategy.WEBHOOK, async onEnable(context) { const eventConfig: any = { eventType: 'company.deleted', }; if (context.propsValue?.groupId) { eventConfig.filter = { groupId: context.propsValue.groupId, }; } const subscribedEvents = [eventConfig]; const webhook = await folkClient.createWebhook({ apiKey: context.auth, name: `Activepieces Company Removed - ${Date.now()}`, targetUrl: context.webhookUrl, subscribedEvents, }); await context.store?.put('_webhookId', webhook.data.id); // await context.store?.put('_signingSecret', webhook.data.signingSecret); }, async onDisable(context) { const webhookId = (await context.store?.get('_webhookId')) as string; if (webhookId) { try { await folkClient.deleteWebhook({ apiKey: context.auth, webhookId, }); } catch (error) { console.warn('Failed to delete webhook:', error); } } }, async run(context) { const payloadBody = context.payload.body as any; if (payloadBody.type !== 'company.deleted') { return []; } return [payloadBody]; }, });

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/activepieces/activepieces'

If you have feedback or need assistance with the MCP directory API, please join our Discord server