UiPath · Schema

UserListResponse

Paginated response containing user records

AutomationRobotic Process AutomationRPAArtificial IntelligenceDocument ProcessingEnterprise AutomationOrchestrationTesting

Properties

Name Type Description
totalCount integer Total number of users
users array
View JSON Schema on GitHub

JSON Schema

automation-hub-user-list-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/uipath/refs/heads/main/json-schema/automation-hub-user-list-response-schema.json",
  "title": "UserListResponse",
  "description": "Paginated response containing user records",
  "type": "object",
  "properties": {
    "totalCount": {
      "type": "integer",
      "description": "Total number of users",
      "example": 42
    },
    "users": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/User"
      },
      "example": []
    }
  }
}