Skip to main content

Process Deposit

POST 

/v2/customers/:customerId/deposits/:depositId/status

Request deposit status update.

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

To move the payment forward you must request status change using POST /v2/customers/{customerId}/deposits/{depositId}/status. This will perform the required validations and move the deposit in PENDING state.

{
"status": "PENDING"
}

To confirm the deposit for execution use POST /v2/customers/{customerId}/deposits/{depositId}/status:

{
"status": "PROCESSING"
}

Request

Responses

Accepted