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

# Get bank payout order details

> Get details of a specific bank payout order



## OpenAPI

````yaml get /api/v1/account/bank-payouts/{oid}
openapi: 3.0.0
info:
  contact:
    email: support@tropipay.com
    name: Tropipay Support
    url: https://help.tropipay.com/contacto/
  description: Banking as a service API.
  title: RALIO API
  version: '1.0'
servers:
  - url: https://sandbox-revo-api.raliopay.com
security: []
paths:
  /api/v1/account/bank-payouts/{oid}:
    get:
      tags:
        - payouts
      summary: Get bank payout order details
      description: Get details of a specific bank payout order
      parameters:
        - description: Bank Payout Order ID
          in: path
          name: oid
          required: true
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/dto.BankPayoutOrderResponse'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/httperror.ErrResponse'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/httperror.ErrResponse'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/httperror.ErrResponse'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/httperror.ErrResponse'
      security:
        - ApiKeyAuth: []
components:
  schemas:
    dto.BankPayoutOrderResponse:
      properties:
        canCancel:
          example: true
          type: boolean
        cancelRequestedAt:
          example: '2025-01-15T10:31:00Z'
          type: string
        canceledAt:
          example: '2025-01-15T10:32:00Z'
          type: string
        createdAt:
          example: '2025-01-15T10:30:00Z'
          type: string
        description:
          example: Payment for services rendered
          type: string
        destination:
          $ref: '#/components/schemas/domain.Money'
        displayType:
          example: Bank Pay Out
          type: string
        failedAt:
          example: '2025-01-15T10:35:00Z'
          type: string
        fee:
          $ref: '#/components/schemas/dto.FeeResponse'
        fx:
          $ref: '#/components/schemas/dto.FXResponse'
        id:
          example: e5f6a7b8-c9d0-4e1f-2a3b-4c5d6e7f8a9b
          type: string
        origin:
          $ref: '#/components/schemas/domain.Money'
        recipient:
          $ref: '#/components/schemas/dto.BankRecipient'
        reference:
          example: PAY-2025-001234
          type: string
        sender:
          $ref: '#/components/schemas/dto.AccountSender'
        settledAt:
          example: '2025-01-15T10:35:00Z'
          type: string
        state:
          example: SETTLED
          type: string
        type:
          example: BANK_PAY_OUT
          type: string
        updatedAt:
          example: '2025-01-15T10:30:05Z'
          type: string
      type: object
    httperror.ErrResponse:
      properties:
        error:
          $ref: '#/components/schemas/httperror.ErrorData'
      type: object
    domain.Money:
      properties:
        amount:
          description: 'Amount in cents. Ex: 12345 = 123.45€'
          example: 1000
          type: integer
        currency:
          description: USD, EUR, etc.
          enum:
            - EUR
            - USD
            - MXN
            - CAD
            - BRL
            - COP
            - PEN
            - BOB
            - CLP
            - ARS
            - UYU
            - PYG
            - CNY
            - HKD
            - MYR
            - USDT
            - USDC
            - EURC
            - BTC
            - ETH
          example: CURRENCY
          type: string
      required:
        - currency
      type: object
    dto.FeeResponse:
      properties:
        amount:
          example: 100
          type: integer
        breakdown:
          $ref: '#/components/schemas/dto.FeeBreakdown'
        currency:
          example: EUR
          type: string
      type: object
    dto.FXResponse:
      properties:
        pair:
          example: CURRENCY/CURRENCY
          type: string
        rate:
          example: 1.08
          type: number
        timestamp:
          example: '2025-01-15T10:30:00Z'
          type: string
      type: object
    dto.BankRecipient:
      properties:
        accountNumber:
          example: ES9121000418450200051332
          type: string
        address:
          example: Calle Gran Via 123
          type: string
        amount:
          type: integer
        bankCountry:
          example: ES
          type: string
        beneficiaryType:
          description: |-
            Beneficiary Type. Possible values: PERSON, BUSINESS
            required: true
            example: PERSON
          enum:
            - PERSON
            - BUSINESS
          example: PERSON
          type: string
        city:
          example: Barcelona
          type: string
        country:
          example: ES
          type: string
        currency:
          example: EUR
          type: string
        documentNumber:
          example: 87654321B
          type: string
        documentType:
          enum:
            - NATIONAL_ID
            - RESIDENCE_CARD
            - PASSPORT
            - DRIVING_LICENSE
            - CIF
            - TAX_ID
          example: NATIONAL_ID
          type: string
        name:
          example: Maria
          type: string
        phone:
          example: '+34612345678'
          type: string
        postalCode:
          example: '08001'
          type: string
        province:
          example: Barcelona
          type: string
        relation:
          example: FRIEND
          type: string
        routingData:
          description: >-
            How the destination bank account is identified: IBAN (SEPA), SWIFT
            (international wire) or WIRE (US domestic Fedwire).
          enum:
            - SEPA
            - IBAN
            - SWIFT
            - WIRE
          example: SEPA
          type: string
        surname:
          example: Garcia
          type: string
        swift:
          example: BANKES
          type: string
      required:
        - accountNumber
        - address
        - beneficiaryType
        - city
        - country
        - currency
        - documentNumber
        - name
        - postalCode
        - routingData
      type: object
    dto.AccountSender:
      properties:
        accountId:
          example: a1b2c3d4-e5f6-4a7b-8c9d-0e1f2a3b4c5d
          type: string
      type: object
    httperror.ErrorData:
      properties:
        code:
          $ref: '#/components/schemas/httperror.ErrorCode'
        details:
          items:
            $ref: '#/components/schemas/httperror.ErrorDetails'
          type: array
        message:
          type: string
        type:
          $ref: '#/components/schemas/httperror.ErrorType'
      type: object
    dto.FeeBreakdown:
      properties:
        merchantFee:
          example: 40
          type: integer
        systemFee:
          example: 60
          type: integer
      type: object
    httperror.ErrorCode:
      enum:
        - INVALID_REQUEST
        - UNAUTHORIZED
        - FORBIDDEN
        - NOT_FOUND
        - INTERNAL_SERVER_ERROR
        - UNKNOWN_ERROR
        - NOT_IMPLEMENTED
        - TOO_MANY_REQUESTS
        - QUOTE_EXPIRED
        - BAD_GATEWAY
      type: string
      x-enum-varnames:
        - InvalidRequestCode
        - UnauthorizedCode
        - ForbiddenCode
        - NotFoundCode
        - InternalServerCode
        - UnknownErrorCode
        - NotImplementedCode
        - TooManyRequestsCode
        - QuoteExpiredCode
        - BadGatewayCode
    httperror.ErrorDetails:
      properties:
        field:
          type: string
        message:
          type: string
      type: object
    httperror.ErrorType:
      enum:
        - VALIDATION_ERROR
        - CONFLICT_ERROR
        - UNPROCESSABLE_ERROR
        - AUTHENTICATION_ERROR
        - AUTHORIZATION_ERROR
        - NOT_FOUND_ERROR
        - INTERNAL_ERROR
        - NOT_IMPLEMENTED_ERROR
        - UNKNOWN_ERROR
        - RATE_LIMIT_ERROR
        - BAD_GATEWAY_ERROR
      type: string
      x-enum-varnames:
        - ValidationError
        - ConflictError
        - UnprocessableError
        - AuthenticationError
        - AuthorizationError
        - NotFoundError
        - InternalError
        - NotImplementedError
        - UnknownError
        - RateLimitError
        - BadGatewayError
  securitySchemes:
    ApiKeyAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: API Key for accessing management endpoints
      x-mint-auth-type: bearer

````