LockerConsumerPost

Payload to add a consumer role to a locker

Properties

Name Type Description
roleId integer ID of the role to grant consumer access
View JSON Schema on GitHub

JSON Schema

automation-anywhere-lockerconsumerpost-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LockerConsumerPost",
  "title": "LockerConsumerPost",
  "type": "object",
  "description": "Payload to add a consumer role to a locker",
  "required": [
    "roleId"
  ],
  "properties": {
    "roleId": {
      "type": "integer",
      "format": "int64",
      "description": "ID of the role to grant consumer access"
    }
  }
}