Skip to main content
POST
/
withdrawal
/
crypto
Request a crypto withdrawal
curl --request POST \
  --url https://jamquest-dev.techboo.net/api/v1/withdrawal/crypto \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "amount": 2,
  "wallet_address": "<string>",
  "currency": "<string>",
  "network": "<string>"
}
'
{
  "status": "ok",
  "data": {
    "message": "<string>",
    "withdrawal_request": {
      "id": 123,
      "user_id": 123,
      "amount": 123,
      "withdrawal_method": "crypto",
      "wallet_address": "<string>",
      "currency": "<string>",
      "network": "<string>",
      "status": "pending",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    },
    "new_balance": 123
  }
}

Authorizations

Authorization
string
header
required

Access token obtained during login or registration. Use this token in the Authorization header for authenticated requests.

Body

application/json
amount
number
required
Required range: x >= 1
wallet_address
string
required
currency
string
required
network
string
required

Response

Crypto withdrawal request submitted successfully

status
string
Example:

"ok"

data
object