action callfire_find_keyword_lease_configs { label: "Find keyword lease configs" description: "Searches for all keyword lease configs for the user. Returns a paged list of KeywordConfig" provider: callfire method: GET path: "/keywords/leases/configs" encoding: json input: { type: "object" properties: { fields: { type: "string" } filter: { type: "string" } labelName: { type: "string" } limit: { type: "integer" format: "int32" } offset: { type: "integer" format: "int32" } } additionalProperties: false } output: { type: "object" description: "Represents a page with results returned by query operation. Check [pagination](https://developers.callfire.com/docs.html#pagination) page for more information about pagination in CallFire API." properties: { items: { type: "array" description: "A list of returned items" items: { type: "object" properties: {} } } limit: { type: "integer" format: "int32" description: "A maximum number of returned items. If items.size() < limit assume no more items" } offset: { type: "integer" format: "int32" description: "An offset from a start of paging source" } totalCount: { type: "integer" format: "int32" description: "Total count of available results. -1 if unknown" } } } }