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

# Bulk Transfers

> Compatibility note for bulk transfer flows outside the reviewed public gateway route set

This page exists for compatibility with older examples and tenant-specific payout programs that refer to a bulk transfer orchestration flow.

## Reviewed Public Status

The reviewed public gateway manifest does **not** currently include a canonical `POST /api/v1/transfers/bulk` route.

## When This Page Still Matters

* your tenant has a separately issued bulk payout contract
* you are migrating from an older integration that still refers to a bulk route
* you need to distinguish reviewed public transfer APIs from compatibility-only guidance

## Guidance

* Do not assume a `/bulk` route exists on every tenant or every environment.
* If Zentra has approved a tenant-specific bulk surface for you, follow the exact contract issued with that program.
* Keep every child transfer deterministic, idempotent, and individually auditable even when your own system batches work upstream.

## Recommended Reviewed Public Pattern

Use individual `POST /api/v1/transfers` requests with stable business `reference` values and replay-safe request identity in your integration layer.

## Next Steps

<CardGroup cols={2}>
  <Card title="Create Transfer" icon="plus" href="/api-reference/transfers/create">
    Use the reviewed public transfer creation route
  </Card>

  <Card title="List Transfers" icon="list" href="/api-reference/transfers/list">
    Review transfer outcomes and reconciliation data
  </Card>
</CardGroup>
