action callfire_find_number_leases { label: "Find leases" description: "Searches for all numbers leased by account user. This API is useful for finding all numbers currently owned by the user. Returns a paged list of number leases." provider: callfire method: GET path: "/numbers/leases" encoding: json input: { type: "object" properties: { city: { type: "string" } fields: { type: "string" } labelName: { type: "string" } limit: { type: "integer" format: "int32" } offset: { type: "integer" format: "int32" } prefix: { type: "string" } state: { type: "string" } tollFree: { type: "boolean" } zipcode: { type: "string" } } additionalProperties: false } output: { description: "~" type: "object" } }