Skip to main content
Glama

mcp-google-sheets

get-call.ts809 B
import { HttpMethod } from '@activepieces/pieces-common'; import { createAction, Property } from '@activepieces/pieces-framework'; import { retellAiApiCall } from '../common/client'; import { retellAiAuth } from '../common/auth'; import { callIdDropdown } from '../common/props'; export const getCall = createAction({ auth: retellAiAuth, name: 'get_call', displayName: 'Get Call', description: 'Retrieve detailed data of a specific call (e.g., transcript), given a Call ID.', props: { callId: callIdDropdown, }, async run({ propsValue, auth }) { const { callId } = propsValue; if (!callId) { throw new Error('Call ID is required'); } return await retellAiApiCall({ method: HttpMethod.GET, url: `/v2/get-call/${callId}`, auth: auth, }); }, });

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