# List internal transfers for an omnibus (paginated)

Endpoint: GET /v1/domains/{domainId}/omnibus/{omnibusId}/internal-transfers

## Path parameters:

  - `domainId` (string, required)

  - `omnibusId` (string, required)

## Query parameters:

  - `page` (integer)

  - `size` (integer)

  - `tenantId` (string)

  - `role` (string)
    Restrict tenantId filter to SOURCE or DEST role; requires tenantId
    Enum: "SOURCE", "DEST"

  - `status` (array)
    Enum: "PENDING", "IN_PROGRESS", "COMPLETED", "FAILED", "CANCELLED", "PENDING_VERIFICATION"

  - `tickerId` (string)

  - `ledgerIds` (array)
    Filter by one or more ledgers (OR semantics).

  - `createdAfter` (string)

  - `createdBefore` (string)

  - `sort` (string)

## Response 200 fields (application/json):

  - `content` (array, required)

  - `content.operationId` (string, required)
    Operation ID for this internal transfer

  - `content.transferId` (string, required)
    Transfer ID for this movement

  - `content.status` (string, required)
    Enum: "PENDING", "IN_PROGRESS", "COMPLETED", "FAILED", "CANCELLED", "PENDING_VERIFICATION"

  - `content.sourceTenant` (object, required)

  - `content.sourceTenant.id` (string, required)

  - `content.sourceTenant.alias` (string, required)

  - `content.sourceTenant.isHost` (boolean, required)

  - `content.destTenant` (object, required)

  - `content.amount` (string, required)
    Transfer amount in the ticker's smallest unit (positive integer string)

  - `content.tickerId` (string, required)
    Ticker identifier

  - `content.ledgerId` (string, required)
    Blockchain ledger identifier

  - `content.feeAmount` (string, required)
    Always "0" for internal transfers

  - `content.confirmedAt` (string)
    Timestamp when the transfer was confirmed on-chain; absent until COMPLETED

  - `content.createdAt` (string, required)
    Timestamp when the operation was created

  - `content.updatedAt` (string, required)
    Timestamp of the last status change on the underlying operation

  - `page` (object, required)

  - `page.number` (integer, required)
    Current page number (0-indexed)

  - `page.size` (integer, required)
    Number of elements per page

  - `page.totalElements` (integer, required)
    Total number of elements across all pages

  - `page.totalPages` (integer, required)
    Total number of pages

  - `page.first` (boolean, required)
    Whether this is the first page

  - `page.last` (boolean, required)
    Whether this is the last page


