action noosh_get_country_list { label: "List all countries" description: "List all countries" provider: noosh method: GET path: "/v1/countries" encoding: json output: { description: "Java type: com.noosh.nooshapi.vo.CountryListVO" properties: { result: { type: "array" items: { description: "Java type: com.noosh.nooshapi.vo.CountryVO" properties: { constant_token: { type: "string" } country: { type: "string" } country_id: { type: "integer" format: "int64" } } } } status_code: { type: "integer" format: "int32" } status_reason: { type: "string" } } } }