AssignLabelRequest

Payload to assign the production label to a specific bot version

Properties

Name Type Description
fileId integer Numeric ID of the bot file
version integer Version number to assign the production label to
View JSON Schema on GitHub

JSON Schema

automation-anywhere-assignlabelrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AssignLabelRequest",
  "title": "AssignLabelRequest",
  "type": "object",
  "description": "Payload to assign the production label to a specific bot version",
  "required": [
    "fileId",
    "version"
  ],
  "properties": {
    "fileId": {
      "type": "integer",
      "format": "int64",
      "description": "Numeric ID of the bot file"
    },
    "version": {
      "type": "integer",
      "description": "Version number to assign the production label to"
    }
  }
}