CredentialAttributeValuePost

A single attribute value to create on a credential

Properties

Name Type Description
credentialAttributeId integer ID of the credential attribute to set the value for
value string Value to store for this attribute
userId integer User ID for user-provided attribute values
View JSON Schema on GitHub

JSON Schema

automation-anywhere-credentialattributevaluepost-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CredentialAttributeValuePost",
  "title": "CredentialAttributeValuePost",
  "type": "object",
  "description": "A single attribute value to create on a credential",
  "properties": {
    "credentialAttributeId": {
      "type": "integer",
      "format": "int64",
      "description": "ID of the credential attribute to set the value for"
    },
    "value": {
      "type": "string",
      "description": "Value to store for this attribute"
    },
    "userId": {
      "type": "integer",
      "format": "int64",
      "description": "User ID for user-provided attribute values"
    }
  }
}