action callfire_remove_contact_list_items { label: "Delete contacts from a contact list" description: "Deletes contacts from a contact list. List the contact ids in request to delete multiple contacts with one request." provider: callfire method: DELETE path: "/contacts/lists/{id}/items" encoding: json input: { type: "object" properties: { contactId: { type: "array" items: { type: "integer" format: "int64" } } id: { type: "integer" format: "int64" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }