Veracode · Capability

Veracode Identity REST API — Users

Veracode Identity REST API — Users. 6 operations. Lead operation: List Users. Self-contained Naftiko capability covering one Veracode business surface.

Run with Naftiko VeracodeUsers

What You Can Do

GET
Listusers — List Users
/v1/api/authn/v2/users
POST
Createuser — Create User
/v1/api/authn/v2/users
GET
Searchusers — Search Users
/v1/api/authn/v2/users/search
GET
Getcurrentuser — Get Current User
/v1/api/authn/v2/users/self
PUT
Updateuser — Update User
/v1/api/authn/v2/users/{userid}
DELETE
Deleteuser — Delete User
/v1/api/authn/v2/users/{userid}

MCP Tools

list-users

List Users

read-only idempotent
create-user

Create User

search-users

Search Users

read-only idempotent
get-current-user

Get Current User

read-only idempotent
update-user

Update User

idempotent
delete-user

Delete User

idempotent

Capability Spec

identity-users.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Veracode Identity REST API — Users
  description: 'Veracode Identity REST API — Users. 6 operations. Lead operation: List Users. Self-contained Naftiko capability
    covering one Veracode business surface.'
  tags:
  - Veracode
  - Users
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    VERACODE_API_KEY: VERACODE_API_KEY
capability:
  consumes:
  - type: http
    namespace: identity-users
    baseUri: https://api.veracode.com
    description: Veracode Identity REST API — Users business capability. Self-contained, no shared references.
    resources:
    - name: api-authn-v2-users
      path: /api/authn/v2/users
      operations:
      - name: listusers
        method: GET
        description: List Users
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: page
          in: query
          type: integer
        - name: size
          in: query
          type: integer
      - name: createuser
        method: POST
        description: Create User
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: api-authn-v2-users-search
      path: /api/authn/v2/users/search
      operations:
      - name: searchusers
        method: GET
        description: Search Users
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: search_term
          in: query
          type: string
        - name: api_id
          in: query
          type: string
        - name: role_id
          in: query
          type: string
        - name: user_type
          in: query
          type: string
        - name: saml_user
          in: query
          type: boolean
    - name: api-authn-v2-users-self
      path: /api/authn/v2/users/self
      operations:
      - name: getcurrentuser
        method: GET
        description: Get Current User
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: api-authn-v2-users-userId
      path: /api/authn/v2/users/{userId}
      operations:
      - name: updateuser
        method: PUT
        description: Update User
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deleteuser
        method: DELETE
        description: Delete User
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
  exposes:
  - type: rest
    namespace: identity-users-rest
    port: 8080
    description: REST adapter for Veracode Identity REST API — Users. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/api/authn/v2/users
      name: api-authn-v2-users
      description: REST surface for api-authn-v2-users.
      operations:
      - method: GET
        name: listusers
        description: List Users
        call: identity-users.listusers
        with:
          page: rest.page
          size: rest.size
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createuser
        description: Create User
        call: identity-users.createuser
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/api/authn/v2/users/search
      name: api-authn-v2-users-search
      description: REST surface for api-authn-v2-users-search.
      operations:
      - method: GET
        name: searchusers
        description: Search Users
        call: identity-users.searchusers
        with:
          search_term: rest.search_term
          api_id: rest.api_id
          role_id: rest.role_id
          user_type: rest.user_type
          saml_user: rest.saml_user
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/api/authn/v2/users/self
      name: api-authn-v2-users-self
      description: REST surface for api-authn-v2-users-self.
      operations:
      - method: GET
        name: getcurrentuser
        description: Get Current User
        call: identity-users.getcurrentuser
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/api/authn/v2/users/{userid}
      name: api-authn-v2-users-userid
      description: REST surface for api-authn-v2-users-userId.
      operations:
      - method: PUT
        name: updateuser
        description: Update User
        call: identity-users.updateuser
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteuser
        description: Delete User
        call: identity-users.deleteuser
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: identity-users-mcp
    port: 9090
    transport: http
    description: MCP adapter for Veracode Identity REST API — Users. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-users
      description: List Users
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: identity-users.listusers
      with:
        page: tools.page
        size: tools.size
      outputParameters:
      - type: object
        mapping: $.
    - name: create-user
      description: Create User
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: identity-users.createuser
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: search-users
      description: Search Users
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: identity-users.searchusers
      with:
        search_term: tools.search_term
        api_id: tools.api_id
        role_id: tools.role_id
        user_type: tools.user_type
        saml_user: tools.saml_user
      outputParameters:
      - type: object
        mapping: $.
    - name: get-current-user
      description: Get Current User
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: identity-users.getcurrentuser
      outputParameters:
      - type: object
        mapping: $.
    - name: update-user
      description: Update User
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: identity-users.updateuser
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-user
      description: Delete User
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: identity-users.deleteuser
      outputParameters:
      - type: object
        mapping: $.