automation-anywhere · Capability

Automation Anywhere Credential Vault API — AttributeValues

Automation Anywhere Credential Vault API — AttributeValues. 4 operations. Lead operation: List credential attribute values. Self-contained Naftiko capability covering one Automation Anywhere business surface.

Run with Naftiko Automation AnywhereAttributeValues

What You Can Do

GET
Listcredentialattributevalues — List credential attribute values
/v1/credentials/{id}/attributevalues
POST
Createcredentialattributevalues — Create credential attribute values
/v1/credentials/{id}/attributevalues
PUT
Updatecredentialattributevalue — Update a credential attribute value
/v1/credentials/{id}/attributevalues/{attributevalueid}
DELETE
Deletecredentialattributevalue — Delete a credential attribute value
/v1/credentials/{id}/attributevalues/{attributevalueid}

MCP Tools

list-credential-attribute-values

List credential attribute values

read-only idempotent
create-credential-attribute-values

Create credential attribute values

update-credential-attribute-value

Update a credential attribute value

idempotent
delete-credential-attribute-value

Delete a credential attribute value

idempotent

Capability Spec

credential-vault-attributevalues.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Automation Anywhere Credential Vault API — AttributeValues
  description: 'Automation Anywhere Credential Vault API — AttributeValues. 4 operations. Lead operation: List credential
    attribute values. Self-contained Naftiko capability covering one Automation Anywhere business surface.'
  tags:
  - Automation Anywhere
  - AttributeValues
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    AUTOMATION_ANYWHERE_API_KEY: AUTOMATION_ANYWHERE_API_KEY
capability:
  consumes:
  - type: http
    namespace: credential-vault-attributevalues
    baseUri: https://{controlRoomUrl}/v2/credentialvault
    description: Automation Anywhere Credential Vault API — AttributeValues business capability. Self-contained, no shared
      references.
    resources:
    - name: credentials-id-attributevalues
      path: /credentials/{id}/attributevalues
      operations:
      - name: listcredentialattributevalues
        method: GET
        description: List credential attribute values
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createcredentialattributevalues
        method: POST
        description: Create credential attribute values
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: credentials-id-attributevalues-attributeValueId
      path: /credentials/{id}/attributevalues/{attributeValueId}
      operations:
      - name: updatecredentialattributevalue
        method: PUT
        description: Update a credential attribute value
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deletecredentialattributevalue
        method: DELETE
        description: Delete a credential attribute value
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.AUTOMATION_ANYWHERE_API_KEY}}'
  exposes:
  - type: rest
    namespace: credential-vault-attributevalues-rest
    port: 8080
    description: REST adapter for Automation Anywhere Credential Vault API — AttributeValues. One Spectral-compliant resource
      per consumed operation, prefixed with /v1.
    resources:
    - path: /v1/credentials/{id}/attributevalues
      name: credentials-id-attributevalues
      description: REST surface for credentials-id-attributevalues.
      operations:
      - method: GET
        name: listcredentialattributevalues
        description: List credential attribute values
        call: credential-vault-attributevalues.listcredentialattributevalues
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createcredentialattributevalues
        description: Create credential attribute values
        call: credential-vault-attributevalues.createcredentialattributevalues
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/credentials/{id}/attributevalues/{attributevalueid}
      name: credentials-id-attributevalues-attributevalueid
      description: REST surface for credentials-id-attributevalues-attributeValueId.
      operations:
      - method: PUT
        name: updatecredentialattributevalue
        description: Update a credential attribute value
        call: credential-vault-attributevalues.updatecredentialattributevalue
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletecredentialattributevalue
        description: Delete a credential attribute value
        call: credential-vault-attributevalues.deletecredentialattributevalue
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: credential-vault-attributevalues-mcp
    port: 9090
    transport: http
    description: MCP adapter for Automation Anywhere Credential Vault API — AttributeValues. One tool per consumed operation,
      routed inline through this capability's consumes block.
    tools:
    - name: list-credential-attribute-values
      description: List credential attribute values
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: credential-vault-attributevalues.listcredentialattributevalues
      outputParameters:
      - type: object
        mapping: $.
    - name: create-credential-attribute-values
      description: Create credential attribute values
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: credential-vault-attributevalues.createcredentialattributevalues
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: update-credential-attribute-value
      description: Update a credential attribute value
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: credential-vault-attributevalues.updatecredentialattributevalue
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-credential-attribute-value
      description: Delete a credential attribute value
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: credential-vault-attributevalues.deletecredentialattributevalue
      outputParameters:
      - type: object
        mapping: $.