action callfire_find_number_regions { label: "Find number regions" description: "Searches for region information. Use this API to obtain detailed region information that can be used to query for more specific phone numbers than a general query." provider: callfire method: GET path: "/numbers/regions" encoding: json input: { type: "object" properties: { city: { type: "string" } cityPrefix: { type: "string" } country: { type: "string" } fields: { type: "string" } limit: { type: "integer" format: "int32" } offset: { type: "integer" format: "int32" } prefix: { type: "string" } state: { type: "string" } zipcode: { type: "string" } } additionalProperties: false } output: { description: "~" type: "object" } }