Veracode · Capability

Veracode Identity REST API — Teams

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

Run with Naftiko VeracodeTeams

What You Can Do

GET
Listteams — List Teams
/v1/api/authn/v2/teams
POST
Createteam — Create Team
/v1/api/authn/v2/teams
GET
Getteam — Get Team
/v1/api/authn/v2/teams/{teamid}
PUT
Updateteam — Update Team
/v1/api/authn/v2/teams/{teamid}
DELETE
Deleteteam — Delete Team
/v1/api/authn/v2/teams/{teamid}

MCP Tools

list-teams

List Teams

read-only idempotent
create-team

Create Team

get-team

Get Team

read-only idempotent
update-team

Update Team

idempotent
delete-team

Delete Team

idempotent

Capability Spec

identity-teams.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Veracode Identity REST API — Teams
  description: 'Veracode Identity REST API — Teams. 5 operations. Lead operation: List Teams. Self-contained Naftiko capability
    covering one Veracode business surface.'
  tags:
  - Veracode
  - Teams
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    VERACODE_API_KEY: VERACODE_API_KEY
capability:
  consumes:
  - type: http
    namespace: identity-teams
    baseUri: https://api.veracode.com
    description: Veracode Identity REST API — Teams business capability. Self-contained, no shared references.
    resources:
    - name: api-authn-v2-teams
      path: /api/authn/v2/teams
      operations:
      - name: listteams
        method: GET
        description: List Teams
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createteam
        method: POST
        description: Create Team
        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-teams-teamId
      path: /api/authn/v2/teams/{teamId}
      operations:
      - name: getteam
        method: GET
        description: Get Team
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updateteam
        method: PUT
        description: Update Team
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deleteteam
        method: DELETE
        description: Delete Team
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
  exposes:
  - type: rest
    namespace: identity-teams-rest
    port: 8080
    description: REST adapter for Veracode Identity REST API — Teams. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/api/authn/v2/teams
      name: api-authn-v2-teams
      description: REST surface for api-authn-v2-teams.
      operations:
      - method: GET
        name: listteams
        description: List Teams
        call: identity-teams.listteams
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createteam
        description: Create Team
        call: identity-teams.createteam
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/api/authn/v2/teams/{teamid}
      name: api-authn-v2-teams-teamid
      description: REST surface for api-authn-v2-teams-teamId.
      operations:
      - method: GET
        name: getteam
        description: Get Team
        call: identity-teams.getteam
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updateteam
        description: Update Team
        call: identity-teams.updateteam
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteteam
        description: Delete Team
        call: identity-teams.deleteteam
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: identity-teams-mcp
    port: 9090
    transport: http
    description: MCP adapter for Veracode Identity REST API — Teams. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-teams
      description: List Teams
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: identity-teams.listteams
      outputParameters:
      - type: object
        mapping: $.
    - name: create-team
      description: Create Team
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: identity-teams.createteam
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: get-team
      description: Get Team
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: identity-teams.getteam
      outputParameters:
      - type: object
        mapping: $.
    - name: update-team
      description: Update Team
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: identity-teams.updateteam
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-team
      description: Delete Team
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: identity-teams.deleteteam
      outputParameters:
      - type: object
        mapping: $.