Equinix · Capability

Metal API — PasswordResetTokens

Metal API — PasswordResetTokens. 2 operations. Lead operation: Reset current user password. Self-contained Naftiko capability covering one Equinix business surface.

Run with Naftiko EquinixPasswordResetTokens

What You Can Do

DELETE
Resetpassword — Reset current user password
/v1/reset-password
POST
Createpasswordresettoken — Create a password reset token
/v1/reset-password

MCP Tools

reset-current-user-password

Reset current user password

idempotent
create-password-reset-token

Create a password reset token

Capability Spec

metal-passwordresettokens.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Metal API — PasswordResetTokens
  description: 'Metal API — PasswordResetTokens. 2 operations. Lead operation: Reset current user password. Self-contained
    Naftiko capability covering one Equinix business surface.'
  tags:
  - Equinix
  - PasswordResetTokens
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    EQUINIX_API_KEY: EQUINIX_API_KEY
capability:
  consumes:
  - type: http
    namespace: metal-passwordresettokens
    baseUri: https://api.equinix.com/metal/v1
    description: Metal API — PasswordResetTokens business capability. Self-contained, no shared references.
    resources:
    - name: reset-password
      path: /reset-password
      operations:
      - name: resetpassword
        method: DELETE
        description: Reset current user password
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createpasswordresettoken
        method: POST
        description: Create a password reset token
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: email
          in: query
          type: string
          description: Email of user to create password reset token
          required: true
    authentication:
      type: apikey
      key: X-Auth-Token
      value: '{{env.EQUINIX_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: metal-passwordresettokens-rest
    port: 8080
    description: REST adapter for Metal API — PasswordResetTokens. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/reset-password
      name: reset-password
      description: REST surface for reset-password.
      operations:
      - method: DELETE
        name: resetpassword
        description: Reset current user password
        call: metal-passwordresettokens.resetpassword
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createpasswordresettoken
        description: Create a password reset token
        call: metal-passwordresettokens.createpasswordresettoken
        with:
          email: rest.email
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: metal-passwordresettokens-mcp
    port: 9090
    transport: http
    description: MCP adapter for Metal API — PasswordResetTokens. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: reset-current-user-password
      description: Reset current user password
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: metal-passwordresettokens.resetpassword
      outputParameters:
      - type: object
        mapping: $.
    - name: create-password-reset-token
      description: Create a password reset token
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: metal-passwordresettokens.createpasswordresettoken
      with:
        email: tools.email
      outputParameters:
      - type: object
        mapping: $.