action flat_list_organization_users { label: "List the organization users" provider: flat method: GET path: "/organizations/users" encoding: json input: { type: "object" properties: { licenseExpirationDate: { type: "array" items: { type: "string" } } limit: { type: "integer" } onlyIds: { type: "boolean" } sort: { type: "string" items: { type: "string" enum: ["firstname", "lastname", "lastActivityDate", "licenseExpirationDate"] } } } additionalProperties: false } output: { type: "array" items: { description: "User details (view for organization teacher / admin)" type: "object" } } }