BotRunDataResponse

Paginated response containing bot run execution records

Properties

Name Type Description
totalRecords integer Total number of bot run records available from the start date
botRunDataList array List of individual bot run records
View JSON Schema on GitHub

JSON Schema

automation-anywhere-botrundataresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BotRunDataResponse",
  "title": "BotRunDataResponse",
  "type": "object",
  "description": "Paginated response containing bot run execution records",
  "properties": {
    "totalRecords": {
      "type": "integer",
      "description": "Total number of bot run records available from the start date"
    },
    "botRunDataList": {
      "type": "array",
      "description": "List of individual bot run records",
      "items": {
        "$ref": "#/components/schemas/BotRunRecord"
      }
    }
  }
}