Auth0 · Capability

Auth0 API — Deprecated > Passwordless

Auth0 API — Deprecated > Passwordless. 2 operations. Lead operation: Auth0 Given the user's credentials, this endpoint will authenticate the user with the provider and return a JSON object with the Access Token and an ID Token.. Self-contained Naftiko capability covering one Auth0 business surface.

Run with Naftiko Auth0Deprecated > Passwordless

What You Can Do

POST
Oauthro — Auth0 Given the user's credentials, this endpoint will authenticate the user with the provider and return a JSON object with the Access Token and an ID Token.
/v1/oauth/ro
POST
Passwordlessverify — Auth0 Verify with verification code
/v1/passwordless/verify

MCP Tools

auth0-given-user-s-credentials-this

Auth0 Given the user's credentials, this endpoint will authenticate the user with the provider and return a JSON object with the Access Token and an ID Token.

auth0-verify-verification-code

Auth0 Verify with verification code

Capability Spec

auth0-deprecated-passwordless.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Auth0 API — Deprecated > Passwordless
  description: 'Auth0 API — Deprecated > Passwordless. 2 operations. Lead operation: Auth0 Given the user''s credentials,
    this endpoint will authenticate the user with the provider and return a JSON object with the Access Token and an ID Token..
    Self-contained Naftiko capability covering one Auth0 business surface.'
  tags:
  - Auth0
  - Deprecated > Passwordless
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    AUTH0_API_KEY: AUTH0_API_KEY
capability:
  consumes:
  - type: http
    namespace: auth0-deprecated-passwordless
    baseUri: ''
    description: Auth0 API — Deprecated > Passwordless business capability. Self-contained, no shared references.
    resources:
    - name: oauth-ro
      path: /oauth/ro
      operations:
      - name: oauthro
        method: POST
        description: Auth0 Given the user's credentials, this endpoint will authenticate the user with the provider and return
          a JSON object with the Access Token and an ID Token.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: passwordless-verify
      path: /passwordless/verify
      operations:
      - name: passwordlessverify
        method: POST
        description: Auth0 Verify with verification code
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
  exposes:
  - type: rest
    namespace: auth0-deprecated-passwordless-rest
    port: 8080
    description: REST adapter for Auth0 API — Deprecated > Passwordless. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/oauth/ro
      name: oauth-ro
      description: REST surface for oauth-ro.
      operations:
      - method: POST
        name: oauthro
        description: Auth0 Given the user's credentials, this endpoint will authenticate the user with the provider and return
          a JSON object with the Access Token and an ID Token.
        call: auth0-deprecated-passwordless.oauthro
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/passwordless/verify
      name: passwordless-verify
      description: REST surface for passwordless-verify.
      operations:
      - method: POST
        name: passwordlessverify
        description: Auth0 Verify with verification code
        call: auth0-deprecated-passwordless.passwordlessverify
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: auth0-deprecated-passwordless-mcp
    port: 9090
    transport: http
    description: MCP adapter for Auth0 API — Deprecated > Passwordless. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: auth0-given-user-s-credentials-this
      description: Auth0 Given the user's credentials, this endpoint will authenticate the user with the provider and return
        a JSON object with the Access Token and an ID Token.
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: auth0-deprecated-passwordless.oauthro
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: auth0-verify-verification-code
      description: Auth0 Verify with verification code
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: auth0-deprecated-passwordless.passwordlessverify
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.