Skip to main content

Process Withdrawal

POST 

/v2/customers/:customerId/withdrawals/:withdrawalId/status

Request withdrawal status update.

Withdrawals are created in PREVIEW state. Withdrawals in PREVIEW state do not create actual transaction in Paysafe Wallet system. It allows to check withdrawal parameters and display the fees.

To move the payment forward you must request status change using POST /profile/withdrawals/{withdrawalId}/status. This will perform the required validations and move the withdrawal in PENDING state.

{
"status": "PENDING"
}

To confirm the withdrawal for execution use POST /profile/withdrawals/{withdrawalId}/status:

{
"status": "PROCESSING"
}

Request

Responses

Accepted