UiPath · Schema

AutomationListResponse

Paginated response containing automation records

AutomationRobotic Process AutomationRPAArtificial IntelligenceDocument ProcessingEnterprise AutomationOrchestrationTesting

Properties

Name Type Description
totalCount integer Total number of automations matching the query
page integer Current page number
pageSize integer Number of records per page
automations array
View JSON Schema on GitHub

JSON Schema

automation-hub-automation-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-automation-list-response-schema.json",
  "title": "AutomationListResponse",
  "description": "Paginated response containing automation records",
  "type": "object",
  "properties": {
    "totalCount": {
      "type": "integer",
      "description": "Total number of automations matching the query",
      "example": 42
    },
    "page": {
      "type": "integer",
      "description": "Current page number",
      "example": 1
    },
    "pageSize": {
      "type": "integer",
      "description": "Number of records per page",
      "example": 1
    },
    "automations": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Automation"
      },
      "example": []
    }
  }
}