action pendo_get_users { label: "fetch User records" description: "get a list of User records" provider: pendo method: GET path: "/users" encoding: json input: { type: "object" properties: { account: { type: "string" } limit: { type: "string" } order_by: { type: "string" } order_dir: { type: "string" } role: { type: "string" } start: { type: "string" } } required: ["role"] additionalProperties: false } output: { type: "object" additionalProperties: true } }