Skip to main content
Glama

mcp-google-sheets

add-follower.ts1.98 kB
import { pipedriveAuth } from '../../index'; import { createAction, Property } from '@activepieces/pieces-framework'; import { ownerIdProp } from '../common/props'; import { pipedriveApiCall } from '../common'; import { HttpMethod } from '@activepieces/pieces-common'; export const addFollowerAction = createAction({ auth: pipedriveAuth, name: 'add-follower', displayName: 'Add Follower', description: 'Adds a follower to a deal, person, organization or product.', props: { followerId: ownerIdProp('Follower', true), entity: Property.StaticDropdown({ displayName: 'Target Object', description: 'Type of object to add the follower to.', required: true, options: { disabled: false, options: [ { label: 'Deal', value: 'deal', }, { label: 'Person', value: 'person', }, { label: 'Organization', value: 'organization', }, { label: 'Product', value: 'product', }, ], }, }), entityId: Property.ShortText({ displayName: 'Target Object ID', description: 'ID of the object to add the follower to.', required:true }), }, async run(context) { const { followerId, entity, entityId } = context.propsValue; let endpoint = ''; switch (entity) { case 'deal': endpoint = `/deals/${entityId}/followers`; break; case 'organization': endpoint = `/organizations/${entityId}/followers`; break; case 'person': endpoint = `/persons/${entityId}/followers`; break; case 'product': endpoint = `/products/${entityId}/followers`; break; } if (!endpoint) { throw new Error(`Invalid object type: ${entity}`); } const response = await pipedriveApiCall({ accessToken: context.auth.access_token, apiDomain: context.auth.data['api_domain'], method: HttpMethod.POST, resourceUri: `/v2${endpoint}`, body: { user_id: followerId, }, }); return response; }, });

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