ListAllocationsResponse

Paginated list of API Task allocations registered in the Control Room

Properties

Name Type Description
list array Array of API Task allocation records
page object
View JSON Schema on GitHub

JSON Schema

automation-anywhere-listallocationsresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ListAllocationsResponse",
  "title": "ListAllocationsResponse",
  "type": "object",
  "description": "Paginated list of API Task allocations registered in the Control Room",
  "properties": {
    "list": {
      "type": "array",
      "description": "Array of API Task allocation records",
      "items": {
        "$ref": "#/components/schemas/ApiTaskAllocation"
      }
    },
    "page": {
      "$ref": "#/components/schemas/PageInfo"
    }
  }
}