action callfire_get_contact_list_items { label: "Find contacts in a contact list" description: "Searches for all entries in a contact list with specified id. Returns a paged list of contact entries" provider: callfire method: GET path: "/contacts/lists/{id}/items" encoding: json input: { type: "object" properties: { fields: { type: "string" } id: { type: "integer" format: "int64" } limit: { type: "integer" format: "int32" } offset: { type: "integer" format: "int32" } } required: ["id"] additionalProperties: false } output: { description: "~" type: "object" } }