Aller au contenu
Chargement des API keys…

Transfers

Send funds to a Mobile Money wallet or bank account via the Transfers API.

A Transfer is an outgoing payout from the balance held by our licensed payment partner. Transfers are asynchronous, listen to transfer.succeeded and transfer.failed.

private key required

Transfers require the private key (sk...) in the Authorization header.

Marketplaces: acting on behalf of a subaccount

Platforms can pay out on behalf of a connected subaccount by sending an X-Sync header alongside their own key (requires the withdrawals capability). See Subaccounts for the full contract and error cases.

Endpoints

MethodPathDescription
POST/transfersCreate a transfer
GET/transfersList transfers
GET/transfers/{id}Retrieve a transfer

The Transfer object

idstringfacultatif
Unique identifier (internal UUID).
referencestring?facultatif
Your internal reference passed at creation.
provider_referencestring?facultatif
Operator-assigned reference.
statusenumfacultatif
pending, processing, succeeded, failed, cancelled.
completebooleanfacultatif
true when the transfer has reached a terminal state.
amountnumberfacultatif
Amount in the major unit of the currency.
currencystringfacultatif
ISO 4217 code.
descriptionstring?facultatif
Descriptive label.
reasonstring?facultatif
Failure/reversal reason code.
sourcestringfacultatif
Origin: api, csv, dashboard.
ledger_balance_beforenumber?facultatif
Balance before this transfer (internal accounting).
ledger_balance_afternumber?facultatif
Balance after this transfer.
timelinearray?facultatif
Chronological list of status events (present when loaded with events).
metadataobjectfacultatif
Free-form key-value data.
succeeded_atdatetime?facultatif
ISO 8601 timestamp of completion.
created_atdatetimefacultatif
ISO 8601 creation timestamp (UTC).

Lifecycle

Events

EventTrigger
transfer.createdTransfer created
transfer.processingTransfer submitted to the operator
transfer.succeededTransfer successfully executed
transfer.failedTransfer failed

Que pensez-vous de ce contenu ?