action iptwist_post { label: "Geolocate a given IP address" provider: iptwist method: POST path: "/" encoding: json input: { type: "object" properties: { ip: { type: "string" format: "ipv4" } } } output: { type: "object" properties: { city: { type: "string" } country: { type: "string" } country_code: { type: "string" } ip: { type: "string" format: "ipv4" } latitude: { type: "number" format: "float" } longitude: { type: "number" format: "float" } state: { type: "string" } timezone: { type: "string" } zip: { type: "string" } } } }