Skip to main content
Authenticated players with a sufficient USD balance can request a PayPal payout through this endpoint. The requested amount is deducted from the player’s money_balance_usd immediately when the request is accepted. The actual PayPal transfer is processed asynchronously, and the withdrawal status progresses from pending to either paid or failed.
The amount is deducted from the player’s balance immediately when you call this endpoint, before the payout is processed by PayPal.

Endpoint

Authentication required. Include the player’s access token in the request header:

Request body

number
required
The USD amount to withdraw. Must be a positive number and must not exceed the player’s current money_balance_usd. Check the minimum withdrawal amount in /v1/app-settings before submitting.
string
required
A valid email address for the PayPal account that will receive the payment.

Example request

Response

201 Created

string
The unique identifier for this withdrawal request. Use this to track the status of the payout.
string
The initial status of the withdrawal. Always "pending" when the request is first created.
number
The USD amount requested in this withdrawal.
number
The player’s remaining USD balance after the withdrawal amount has been deducted.

Error responses