action jumpseller_get_countries_country_code_regions_region_code_json { label: "Retrieve a single Region information object." provider: jumpseller method: GET path: "/countries/{country_code}/regions/{region_code}.json" encoding: json input: { type: "object" properties: { country_code: { type: "string" format: "string" } region_code: { type: "string" format: "string" } } required: ["country_code", "region_code"] additionalProperties: false } output: { properties: { code: { type: "string" } name: { type: "string" } } } }