action onsched_get_consumer_v1_customers_countries { label: "List Country Codes" description: "

Use this endpoint to return a List of Countries with their associated Country Code. Country codes are based on the 2-character ANSI standard. If your countries of operation are not currently listed, contact us at support@onsched.com.

" provider: onsched method: GET path: "/consumer/v1/customers/countries" encoding: json output: { type: "array" items: { type: "object" description: "View model for country objects" properties: { code: { type: "string" } name: { type: "string" } object: { type: "string" } } additionalProperties: false } } }