Skip to main content
Glama
delete-job-appointment.ts949 B
import { createAction, Property } from "@activepieces/pieces-framework"; import { housecallProAuth, makeHousecallProRequest } from "../common"; import { HttpMethod } from "@activepieces/pieces-common"; export const deleteJobAppointment = createAction({ auth: housecallProAuth, name: "delete_job_appointment", displayName: "Delete appointment", description: "Delete a job appointment", props: { appointment_id: Property.ShortText({ displayName: "Appointment ID", description: "The ID of the appointment", required: true, }), job_id: Property.ShortText({ displayName: "Job ID", description: "The ID of the job", required: true, }), }, async run({ auth, propsValue }) { const response = await makeHousecallProRequest( auth, `/jobs/${propsValue['job_id']}/appointments/${propsValue['appointment_id']}`, HttpMethod.DELETE ); return response.body; }, });

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