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
import { propsValidation } from '@activepieces/pieces-common';
import { createAction } from '@activepieces/pieces-framework';
import { zohoCampaignsAuth, zohoCampaignsCommon } from '../common';
export const createCampaign = createAction({
auth: zohoCampaignsAuth,
name: 'createCampaign',
displayName: 'Create Campaign',
description:
'Create a new campaign with campaign name, subject, topic, sender name/address, and mailing list.',
props: zohoCampaignsCommon.createCampaignProperties(),
async run({ auth, propsValue }) {
const { access_token: accessToken, location } = auth as any;
await propsValidation.validateZod(
propsValue,
zohoCampaignsCommon.createCampaignSchema
);
const list_details =
propsValue.list_details?.reduce((acc, curr) => {
acc[curr] = [];
return acc;
}, {} as { [key: string]: [] }) || {};
return await zohoCampaignsCommon.createCampaign({
accessToken,
location,
...propsValue,
list_details,
});
},
});