action callfire_delete_contact { label: "Delete a contact" description: "Deletes a contact instance from account" provider: callfire method: DELETE path: "/contacts/{id}" encoding: json input: { type: "object" properties: { id: { type: "integer" format: "int64" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }