action envoice_general_api_countries { label: "Return all of the platform supported countries" provider: envoice method: GET path: "/api/general/countries" encoding: json input: { type: "object" properties: { "x-auth-key": { type: "string" } "x-auth-secret": { type: "string" } } required: ["x-auth-key", "x-auth-secret"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { Id: { type: "integer" format: "int32" description: "Entity id" } Name: { type: "string" description: "Name of the country" } Value: { type: "string" description: "Country short code" } } } } }