action callfire_update_contact_list { label: "Update a contact list" description: "Updates contact list instance." provider: callfire method: PUT path: "/contacts/lists/{id}" encoding: json input: { type: "object" properties: { id: { type: "integer" format: "int64" } name: { type: "string" description: "A name of a contact list" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }