> ## 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.

# 44 - Account Movimentation

> <p>Scopes:</p>
<b>api.ext api.conta.movimento</b>

Through this endpoint, the partner can view all debit or credit transactions made on their account.


## OpenAPI

````yaml get /api/Conta/Movimento
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:
  /api/Conta/Movimento:
    get:
      tags:
        - Conta
      summary: >-
        Endpoint responsável por consultar os movimentos financeiros de uma
        conta bancária por período de parceiro.
      description: "<p>Scopes:</p>\r\n<b>api.ext api.conta.movimento</b>"
      parameters:
        - name: DtInicial
          in: query
          description: Data inicial do período
          schema:
            type: string
            description: Data inicial do período
            format: date
        - name: DtFinal
          in: query
          description: Data final do período
          schema:
            type: string
            description: Data final do período
            format: date
        - name: Operacoes
          in: query
          description: Lista de operações a serem retornadas
          schema:
            type: array
            items:
              type: string
            description: Lista de operações a serem retornadas
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/BMPSPB.Domain.Messaging.API.Externa.Conta.ConsultaMovimentoResponse
        '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:
  schemas:
    BMPSPB.Domain.Messaging.API.Externa.Conta.ConsultaMovimentoResponse:
      type: object
      properties:
        sucesso:
          type: boolean
        mensagem:
          type: string
          nullable: true
        parametros:
          allOf:
            - $ref: >-
                #/components/schemas/BMPSPB.Domain.Messaging.API.Externa.Conta.ConsultaMovimentoRequest
          nullable: true
        movimentos:
          type: array
          items:
            $ref: >-
              #/components/schemas/BMPSPB.Domain.Messaging.API.Externa.Conta.MovimentoResponse
          nullable: true
      additionalProperties: false
    BMPSPB.Domain.Messaging.API.Externa.Conta.ConsultaMovimentoRequest:
      type: object
      properties:
        dtInicial:
          type: string
          description: Data inicial do período
          format: date
        dtFinal:
          type: string
          description: Data final do período
          format: date
        operacoes:
          type: array
          items:
            type: string
          description: Lista de operações a serem retornadas
          nullable: true
      additionalProperties: false
    BMPSPB.Domain.Messaging.API.Externa.Conta.MovimentoResponse:
      type: object
      properties:
        dtMovimento:
          type: string
          format: date-time
          nullable: true
        codigoConta:
          type: string
          format: uuid
        codigoOperacao:
          type: string
          format: uuid
        descOperacao:
          type: string
          nullable: true
        identificadorOperacao:
          type: string
          nullable: true
        documentoFederal:
          type: string
          nullable: true
        nome:
          type: string
          nullable: true
        documentoFederalCorrentista:
          type: string
          nullable: true
        nomeCorrentista:
          type: string
          nullable: true
        vlrMovimento:
          type: number
          format: double
        tipoLancamento:
          type: string
          nullable: true
        nsu:
          type: integer
          format: int64
        codigoMovimento:
          type: string
          format: uuid
          nullable: true
      additionalProperties: false
  securitySchemes:
    Bearer:
      type: apiKey
      description: Copie 'Bearer ' + token
      name: Authorization
      in: header

````