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

# Finalize Agent Identity Credentials



## OpenAPI

````yaml /api-reference/openapi.json post /agent-identity/finalize
openapi: 3.1.0
info:
  title: apowerb API
  description: REST API of the apowerb agentic framework (open-source edition).
  version: 0.2.0
  license:
    name: MIT
    url: https://github.com/apowerb/apowerb/blob/main/LICENSE
servers:
  - url: https://api.example.com
    description: Your apowerb instance
  - url: http://localhost:8000
    description: Local stack
security: []
paths:
  /agent-identity/finalize:
    post:
      summary: Finalize Agent Identity Credentials
      operationId: finalize_agent_identity_credentials_agent_identity_finalize_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/FinalizeAgentIdentityCredentialsRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                additionalProperties:
                  type: string
                type: object
                title: >-
                  Response Finalize Agent Identity Credentials Agent Identity
                  Finalize Post
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    FinalizeAgentIdentityCredentialsRequest:
      properties:
        connectorName:
          type: string
          title: Connectorname
        userId:
          type: string
          title: Userid
        userIdValidationState:
          type: string
          title: Useridvalidationstate
        consentNonce:
          type: string
          title: Consentnonce
      type: object
      required:
        - connectorName
        - userId
        - userIdValidationState
        - consentNonce
      title: FinalizeAgentIdentityCredentialsRequest
      description: Request to finalize a 3LO consent for an Agent Identity connector.
    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
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````

## Related topics

- [Configuration](/configuration.md)
- [Index Db Nl](/api-reference/rag/index-db-nl.md)
- [Integrations](/guides/integrations/overview.md)
- [Architecture](/concepts/architecture.md)
- [apowerb](/ecosystem/apowerb.md)
