action callfire_delete_contact_list { label: "Delete a contact list" description: "Deletes a contact list, included contacts will not be deleted." provider: callfire method: DELETE path: "/contacts/lists/{id}" encoding: json input: { type: "object" properties: { id: { type: "integer" format: "int64" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }