action onsched_get_consumer_v1_customers_states { label: "List Country States" description: "
Use this endpoint to return a List of Countries with their associated State Codes. Supply a country code to filter results further. If states for your countries of operation are not currently listed, contact us at support@onsched.com.
" provider: onsched method: GET path: "/consumer/v1/customers/states" encoding: json input: { type: "object" properties: { country: { type: "string" } } additionalProperties: false } output: { type: "array" items: { type: "object" description: "View model for state object" properties: { code: { type: "string" } country: { type: "string" } countryName: { type: "string" } name: { type: "string" } object: { type: "string" } } additionalProperties: false } } }