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

# Retry Hint

> Tell the UI whether this failed session can be auto-retried with saved creds.

Checks UserIntegrationCredential first, then falls back to global
IntegrationSetting. Does not return the secret itself — only a mask so the
user can confirm which credential will be used.



## OpenAPI

````yaml /api-reference/openapi.json get /api/playground/sessions/{session_id}/retry-hint
openapi: 3.1.0
info:
  title: Blindsight API
  version: 0.1.0
servers: []
security: []
paths:
  /api/playground/sessions/{session_id}/retry-hint:
    get:
      tags:
        - playground-integrations
      summary: Retry Hint
      description: >-
        Tell the UI whether this failed session can be auto-retried with saved
        creds.


        Checks UserIntegrationCredential first, then falls back to global

        IntegrationSetting. Does not return the secret itself — only a mask so
        the

        user can confirm which credential will be used.
      operationId: retry_hint_api_playground_sessions__session_id__retry_hint_get
      parameters:
        - name: session_id
          in: path
          required: true
          schema:
            type: string
            title: Session Id
        - name: X-API-Key
          in: header
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: X-Api-Key
        - name: blindsight_session
          in: cookie
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Blindsight Session
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RetryHintResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    RetryHintResponse:
      properties:
        session_id:
          type: string
          title: Session Id
        provider:
          anyOf:
            - type: string
            - type: 'null'
          title: Provider
        has_saved_credentials:
          type: boolean
          title: Has Saved Credentials
          default: false
        saved_username:
          anyOf:
            - type: string
            - type: 'null'
          title: Saved Username
        saved_masked_secret:
          anyOf:
            - type: string
            - type: 'null'
          title: Saved Masked Secret
        source:
          anyOf:
            - type: string
            - type: 'null'
          title: Source
      type: object
      required:
        - session_id
      title: RetryHintResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````