curl --request POST \
--url https://doc-api.oppiwallet.com/api/v1/manualWithdraw \
--header 'signatureToken: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...' \
--header 'Content-Type: application/json' \
--data '{
"currency": "6698aec7f188ae24c673da1c",
"amount": "0.01",
"orderId": "ORDER_1"
}'
{
"message": "Your withdraw request send successfully!"
}
Authentication
A JWT token required for API authentication.
Generate JWT token as explained in section Generate JWT Token using empty string.
Must be set to application/json
.
Request Body
Provide amount for transaction.
Pass orderId for your reference.
curl --request POST \
--url https://doc-api.oppiwallet.com/api/v1/manualWithdraw \
--header 'signatureToken: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...' \
--header 'Content-Type: application/json' \
--data '{
"currency": "6698aec7f188ae24c673da1c",
"amount": "0.01",
"orderId": "ORDER_1"
}'
Response
Returns a success message upon successful request.
Success message for the withdrawal request.
{
"message": "Your withdraw request send successfully!"
}