action gettyimages_get_v3_countries { label: "Gets countries codes and names." description: "Returns a list of country objects that contains country name, two letter ISO abbreviation and three letter ISO abbreviation.\n\nYou'll need an API key and access token to use this resource.\n" provider: gettyimages method: GET path: "/v3/countries" encoding: json input: { type: "object" properties: { "Accept-Language": { type: "string" description: "Provide a header to specify the language of result values. Supported values: cs (iStock only), de, en-GB, en-US, es, fi (iStock only), fr, hu (iStock only), id (iStock only), it, ja, ko (creative assets only), nl, pl (creative assets only), pt-BR, pt-PT, ro (iStock only), ru (creative assets only), sv, th (iStock only), tr, uk (iStock only), vi (iStock only), zh-HK (creative assets only)." } } additionalProperties: false } output: { type: "object" properties: { countries: { type: "array" items: { type: "object" properties: { iso_alpha_2: { type: "string" } iso_alpha_3: { type: "string" } name: { type: "string" } } additionalProperties: false } } } additionalProperties: false } }