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

# 73 - Finish Account Creation

> <p>Scopes:</p>
<b>api.ext api.onboarding.conta.finalizarpreenchimento</b>

Use this request to complete the application and submit the information for analysis.


## OpenAPI

````yaml post /v1/api/OnboardingContas/ContaSolicitacaoCriacao/{codigo}/Finalizar
openapi: 3.0.1
info:
  title: BMPSPBExt
  description: '<p><strong>Build Number: </strong>#0.0</p>'
  version: v1
servers:
  - url: https://api.ext.dbs.moneyp.dev.br/
    description: Localhost
security:
  - Bearer: []
paths:
  /v1/api/OnboardingContas/ContaSolicitacaoCriacao/{codigo}/Finalizar:
    post:
      tags:
        - ContaSolicitacaoCriacao
      summary: >-
        Finalizar o preenchimento da solicitação e enviar as informações para
        análise.
      description: "<p>Scopes:</p>\r\n<b>api.ext api.onboarding.conta.finalizarpreenchimento</b>"
      parameters:
        - name: codigo
          in: path
          required: true
          schema:
            type: string
            format: uuid
        - name: IdempotencyKey
          in: header
          required: true
          schema:
            type: string
        - name: IgnoraHandshake
          in: header
          description: (somente em homologação)
          required: true
          schema:
            type: boolean
            default: true
      responses:
        '200':
          description: Success
        '400':
          description: Erro de negócio
          content:
            application/json:
              schema:
                type: object
                properties:
                  sucesso:
                    type: boolean
                  mensagem:
                    type: string
        '500':
          description: Erro interno do servidor
          content:
            application/json:
              schema:
                type: object
                properties:
                  sucesso:
                    type: boolean
                  mensagem:
                    type: string
components:
  securitySchemes:
    Bearer:
      type: apiKey
      description: Copie 'Bearer ' + token
      name: Authorization
      in: header

````