action callfire_remove_contact_list_item { label: "Delete a contact from a contact list" description: "Deletes a single contact from a contact list" provider: callfire method: DELETE path: "/contacts/lists/{id}/items/{contactId}" encoding: json input: { type: "object" properties: { contactId: { type: "integer" format: "int64" } id: { type: "integer" format: "int64" } } required: ["contactId", "id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }