get:
  summary: Retrieves information for a specific bulk transfer
  description: >-
    The HTTP request `GET /bulkTransfers/{bulkTransferId}` is used to get
    information regarding a bulk transfer created or requested earlier. The
    `{bulkTransferId}` in the URI should contain the `bulkTransferId` that
    was used for the creation of the bulk transfer.
  tags:
    - BulkTransfers
  parameters:
    - $ref: ../../components/parameters/bulkTransferId.yaml
  responses:
    '200':
      description: Bulk transfer information successfully retrieved
      content:
        application/json:
          schema:
            $ref: ../../components/responses/bulkTransferStatusResponse.yaml
    '500':
      description: An error occurred processing the bulk transfer
      content:
        application/json:
          schema:
            $ref: ../../components/schemas/errorResponse.yaml
