Logto · Capability

Logto API references — Sign-in experience

Logto API references — Sign-in experience. 4 operations. Lead operation: Get default sign-in experience settings. Self-contained Naftiko capability covering one Logto business surface.

Run with Naftiko LogtoSign-in experience

What You Can Do

GET
Getsigninexp — Get default sign-in experience settings
/v1/api/sign-in-exp
PATCH
Updatesigninexp — Update default sign-in experience settings
/v1/api/sign-in-exp
POST
Checkpasswordwithdefaultsigninexperience — Check if a password meets the password policy
/v1/api/sign-in-exp/default/check-password
POST
Uploadcustomuiassets — Upload custom UI assets
/v1/api/sign-in-exp/default/custom-ui-assets

MCP Tools

get-default-sign-experience-settings

Get default sign-in experience settings

read-only idempotent
update-default-sign-experience-settings

Update default sign-in experience settings

idempotent
check-if-password-meets-password

Check if a password meets the password policy

read-only
upload-custom-ui-assets

Upload custom UI assets

Capability Spec

logto-sign-in-experience.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Logto API references — Sign-in experience
  description: 'Logto API references — Sign-in experience. 4 operations. Lead operation: Get default sign-in experience settings.
    Self-contained Naftiko capability covering one Logto business surface.'
  tags:
  - Logto
  - Sign-in experience
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    LOGTO_API_KEY: LOGTO_API_KEY
capability:
  consumes:
  - type: http
    namespace: logto-sign-in-experience
    baseUri: https://[tenant_id].logto.app
    description: Logto API references — Sign-in experience business capability. Self-contained, no shared references.
    resources:
    - name: api-sign-in-exp
      path: /api/sign-in-exp
      operations:
      - name: getsigninexp
        method: GET
        description: Get default sign-in experience settings
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updatesigninexp
        method: PATCH
        description: Update default sign-in experience settings
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: removeUnusedDemoSocialConnector
          in: query
          type: string
          description: Whether to remove unused demo social connectors. (These demo social connectors are only used during
            cloud user onboarding)
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: api-sign-in-exp-default-check-password
      path: /api/sign-in-exp/default/check-password
      operations:
      - name: checkpasswordwithdefaultsigninexperience
        method: POST
        description: Check if a password meets the password policy
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: api-sign-in-exp-default-custom-ui-assets
      path: /api/sign-in-exp/default/custom-ui-assets
      operations:
      - name: uploadcustomuiassets
        method: POST
        description: Upload custom UI assets
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    authentication:
      type: bearer
      token: '{{env.LOGTO_API_KEY}}'
  exposes:
  - type: rest
    namespace: logto-sign-in-experience-rest
    port: 8080
    description: REST adapter for Logto API references — Sign-in experience. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/api/sign-in-exp
      name: api-sign-in-exp
      description: REST surface for api-sign-in-exp.
      operations:
      - method: GET
        name: getsigninexp
        description: Get default sign-in experience settings
        call: logto-sign-in-experience.getsigninexp
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: updatesigninexp
        description: Update default sign-in experience settings
        call: logto-sign-in-experience.updatesigninexp
        with:
          removeUnusedDemoSocialConnector: rest.removeUnusedDemoSocialConnector
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/api/sign-in-exp/default/check-password
      name: api-sign-in-exp-default-check-password
      description: REST surface for api-sign-in-exp-default-check-password.
      operations:
      - method: POST
        name: checkpasswordwithdefaultsigninexperience
        description: Check if a password meets the password policy
        call: logto-sign-in-experience.checkpasswordwithdefaultsigninexperience
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/api/sign-in-exp/default/custom-ui-assets
      name: api-sign-in-exp-default-custom-ui-assets
      description: REST surface for api-sign-in-exp-default-custom-ui-assets.
      operations:
      - method: POST
        name: uploadcustomuiassets
        description: Upload custom UI assets
        call: logto-sign-in-experience.uploadcustomuiassets
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: logto-sign-in-experience-mcp
    port: 9090
    transport: http
    description: MCP adapter for Logto API references — Sign-in experience. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: get-default-sign-experience-settings
      description: Get default sign-in experience settings
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: logto-sign-in-experience.getsigninexp
      outputParameters:
      - type: object
        mapping: $.
    - name: update-default-sign-experience-settings
      description: Update default sign-in experience settings
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: logto-sign-in-experience.updatesigninexp
      with:
        removeUnusedDemoSocialConnector: tools.removeUnusedDemoSocialConnector
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: check-if-password-meets-password
      description: Check if a password meets the password policy
      hints:
        readOnly: true
        destructive: false
        idempotent: false
      call: logto-sign-in-experience.checkpasswordwithdefaultsigninexperience
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: upload-custom-ui-assets
      description: Upload custom UI assets
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: logto-sign-in-experience.uploadcustomuiassets
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.