action biapi_get_users { label: "Get users" description: "" provider: biapi method: GET path: "/users" encoding: json input: { type: "object" properties: { expand: { type: "string" } search: { type: "string" } } additionalProperties: false } output: { type: "object" required: ["users"] properties: { total: { type: "number" description: "total number of results" } users: { type: "array" items: { type: "object" required: ["id", "signin", "platform"] properties: { id: { type: "integer" } platform: { type: "string" enum: ["web", "iPad", "iPhone", "Android", "CAstore", "requestAccess", "sharedAccess", "singleAccess", "transfer", "refresh_token"] } signin: { type: "string" format: "date-time" } } } } } } }