action callfire_find_numbers_local { label: "Find local numbers" description: "Searches for numbers available for purchase in CallFire local numbers catalog . At least one additional parameter is required. User may filter local numbers by their region information. If all numbers with desirable zip code is already busy search will return available numbers with nearest zip code." provider: callfire method: GET path: "/numbers/local" encoding: json input: { type: "object" properties: { city: { type: "string" } fields: { type: "string" } limit: { type: "integer" format: "int32" } prefix: { type: "string" } state: { type: "string" } zipcode: { type: "string" } } additionalProperties: false } output: { description: "~" type: "object" } }