action callfire_find_contacts { label: "Find contacts" description: "Find user's contacts by id, contact list, or on any property name. Returns a paged list of contacts" provider: callfire method: GET path: "/contacts" encoding: json input: { type: "object" properties: { contactListId: { type: "integer" format: "int64" } fields: { type: "string" } id: { type: "array" items: { type: "integer" format: "int64" } } limit: { type: "integer" format: "int32" } number: { type: "array" items: { type: "string" } } offset: { type: "integer" format: "int32" } propertyName: { type: "string" } propertyValue: { type: "string" } } additionalProperties: false } output: { description: "~" type: "object" } }