> ## Documentation Index
> Fetch the complete documentation index at: https://docs.kaizenautomation.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get login password

> Returns the decrypted password for a login. Gated by a LaunchDarkly feature flag per organization.



## OpenAPI

````yaml /openapi.json post /logins/getPassword
openapi: 3.1.0
info:
  title: Kaizen API
  version: 1.0.0
  description: API for the Kaizen Automation Platform
servers:
  - url: https://api.kaizenautomation.com
    description: Production server
security: []
paths:
  /logins/getPassword:
    post:
      tags:
        - Logins
      summary: Get login password
      description: >-
        Returns the decrypted password for a login. Gated by a LaunchDarkly
        feature flag per organization.
      requestBody:
        description: Login external ID to get password for
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                id:
                  type: string
                  description: External ID of the login to get password for
              required:
                - id
      responses:
        '200':
          description: Password retrieved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  password:
                    type: string
                    description: The decrypted password for the login
                required:
                  - password
        '400':
          description: Invalid request parameters
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                required:
                  - error
        '403':
          description: Feature not enabled for this organization
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                required:
                  - error
        '404':
          description: Login not found or has no password
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                required:
                  - error

````