Gravitee · Capability

Gravitee.io - Access Management API — device identifiers

Gravitee.io - Access Management API — device identifiers. 5 operations. Lead operation: List registered device identifiers for a security domain. Self-contained Naftiko capability covering one Gravitee business surface.

Run with Naftiko Graviteedevice identifiers

What You Can Do

GET
Listdeviceidentifiers — List registered device identifiers for a security domain
/v1/organizations/{organizationid}/environments/{environmentid}/domains/{domain}/device-identifiers
POST
Createdeviceidentifier — Create a device identifier
/v1/organizations/{organizationid}/environments/{environmentid}/domains/{domain}/device-identifiers
GET
Getdeviceidentifier — Get a Device identifier
/v1/organizations/{organizationid}/environments/{environmentid}/domains/{domain}/device-identifiers/{deviceidentifier}
PUT
Updatedeviceidentifier — Update a Device identifier
/v1/organizations/{organizationid}/environments/{environmentid}/domains/{domain}/device-identifiers/{deviceidentifier}
DELETE
Deletedeviceidentifier — Delete a Device identifier
/v1/organizations/{organizationid}/environments/{environmentid}/domains/{domain}/device-identifiers/{deviceidentifier}

MCP Tools

list-registered-device-identifiers-security

List registered device identifiers for a security domain

read-only idempotent
create-device-identifier

Create a device identifier

get-device-identifier

Get a Device identifier

read-only idempotent
update-device-identifier

Update a Device identifier

idempotent
delete-device-identifier

Delete a Device identifier

idempotent

Capability Spec

am-device-identifiers.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Gravitee.io - Access Management API — device identifiers
  description: 'Gravitee.io - Access Management API — device identifiers. 5 operations. Lead operation: List registered device
    identifiers for a security domain. Self-contained Naftiko capability covering one Gravitee business surface.'
  tags:
  - Gravitee
  - device identifiers
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    GRAVITEE_API_KEY: GRAVITEE_API_KEY
capability:
  consumes:
  - type: http
    namespace: am-device-identifiers
    baseUri: ''
    description: Gravitee.io - Access Management API — device identifiers business capability. Self-contained, no shared references.
    resources:
    - name: organizations-organizationId-environments-environmentId-domains-domain-device-id
      path: /organizations/{organizationId}/environments/{environmentId}/domains/{domain}/device-identifiers
      operations:
      - name: listdeviceidentifiers
        method: GET
        description: List registered device identifiers for a security domain
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: organizationId
          in: path
          type: string
          required: true
        - name: environmentId
          in: path
          type: string
          required: true
        - name: domain
          in: path
          type: string
          required: true
      - name: createdeviceidentifier
        method: POST
        description: Create a device identifier
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: organizationId
          in: path
          type: string
          required: true
        - name: environmentId
          in: path
          type: string
          required: true
        - name: domain
          in: path
          type: string
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: organizations-organizationId-environments-environmentId-domains-domain-device-id
      path: /organizations/{organizationId}/environments/{environmentId}/domains/{domain}/device-identifiers/{deviceIdentifier}
      operations:
      - name: getdeviceidentifier
        method: GET
        description: Get a Device identifier
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: organizationId
          in: path
          type: string
          required: true
        - name: environmentId
          in: path
          type: string
          required: true
        - name: domain
          in: path
          type: string
          required: true
        - name: deviceIdentifier
          in: path
          type: string
          required: true
      - name: updatedeviceidentifier
        method: PUT
        description: Update a Device identifier
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: organizationId
          in: path
          type: string
          required: true
        - name: environmentId
          in: path
          type: string
          required: true
        - name: domain
          in: path
          type: string
          required: true
        - name: deviceIdentifier
          in: path
          type: string
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deletedeviceidentifier
        method: DELETE
        description: Delete a Device identifier
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: organizationId
          in: path
          type: string
          required: true
        - name: environmentId
          in: path
          type: string
          required: true
        - name: domain
          in: path
          type: string
          required: true
        - name: deviceIdentifier
          in: path
          type: string
          required: true
    authentication:
      type: bearer
      token: '{{env.GRAVITEE_API_KEY}}'
  exposes:
  - type: rest
    namespace: am-device-identifiers-rest
    port: 8080
    description: REST adapter for Gravitee.io - Access Management API — device identifiers. One Spectral-compliant resource
      per consumed operation, prefixed with /v1.
    resources:
    - path: /v1/organizations/{organizationid}/environments/{environmentid}/domains/{domain}/device-identifiers
      name: organizations-organizationid-environments-environmentid-domains-domain-device-id
      description: REST surface for organizations-organizationId-environments-environmentId-domains-domain-device-id.
      operations:
      - method: GET
        name: listdeviceidentifiers
        description: List registered device identifiers for a security domain
        call: am-device-identifiers.listdeviceidentifiers
        with:
          organizationId: rest.organizationId
          environmentId: rest.environmentId
          domain: rest.domain
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createdeviceidentifier
        description: Create a device identifier
        call: am-device-identifiers.createdeviceidentifier
        with:
          organizationId: rest.organizationId
          environmentId: rest.environmentId
          domain: rest.domain
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/organizations/{organizationid}/environments/{environmentid}/domains/{domain}/device-identifiers/{deviceidentifier}
      name: organizations-organizationid-environments-environmentid-domains-domain-device-id
      description: REST surface for organizations-organizationId-environments-environmentId-domains-domain-device-id.
      operations:
      - method: GET
        name: getdeviceidentifier
        description: Get a Device identifier
        call: am-device-identifiers.getdeviceidentifier
        with:
          organizationId: rest.organizationId
          environmentId: rest.environmentId
          domain: rest.domain
          deviceIdentifier: rest.deviceIdentifier
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updatedeviceidentifier
        description: Update a Device identifier
        call: am-device-identifiers.updatedeviceidentifier
        with:
          organizationId: rest.organizationId
          environmentId: rest.environmentId
          domain: rest.domain
          deviceIdentifier: rest.deviceIdentifier
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletedeviceidentifier
        description: Delete a Device identifier
        call: am-device-identifiers.deletedeviceidentifier
        with:
          organizationId: rest.organizationId
          environmentId: rest.environmentId
          domain: rest.domain
          deviceIdentifier: rest.deviceIdentifier
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: am-device-identifiers-mcp
    port: 9090
    transport: http
    description: MCP adapter for Gravitee.io - Access Management API — device identifiers. One tool per consumed operation,
      routed inline through this capability's consumes block.
    tools:
    - name: list-registered-device-identifiers-security
      description: List registered device identifiers for a security domain
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: am-device-identifiers.listdeviceidentifiers
      with:
        organizationId: tools.organizationId
        environmentId: tools.environmentId
        domain: tools.domain
      outputParameters:
      - type: object
        mapping: $.
    - name: create-device-identifier
      description: Create a device identifier
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: am-device-identifiers.createdeviceidentifier
      with:
        organizationId: tools.organizationId
        environmentId: tools.environmentId
        domain: tools.domain
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: get-device-identifier
      description: Get a Device identifier
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: am-device-identifiers.getdeviceidentifier
      with:
        organizationId: tools.organizationId
        environmentId: tools.environmentId
        domain: tools.domain
        deviceIdentifier: tools.deviceIdentifier
      outputParameters:
      - type: object
        mapping: $.
    - name: update-device-identifier
      description: Update a Device identifier
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: am-device-identifiers.updatedeviceidentifier
      with:
        organizationId: tools.organizationId
        environmentId: tools.environmentId
        domain: tools.domain
        deviceIdentifier: tools.deviceIdentifier
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-device-identifier
      description: Delete a Device identifier
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: am-device-identifiers.deletedeviceidentifier
      with:
        organizationId: tools.organizationId
        environmentId: tools.environmentId
        domain: tools.domain
        deviceIdentifier: tools.deviceIdentifier
      outputParameters:
      - type: object
        mapping: $.