action clever_get_districts { label: "getDistricts" description: "Returns a list of districts. In practice this will only return the one district associated with the bearer token" provider: clever method: GET path: "/districts" encoding: json output: { type: "object" properties: { data: { type: "array" items: { type: "object" properties: { data: { type: "object" properties: { id: { type: "string" } mdr_number: { type: "string" } name: { type: "string" } } } } } } } } }