Skip to main content
POST
/
deposit
/
card
Initiate card deposit
curl --request POST \
  --url https://jamquest-dev.techboo.net/api/v1/deposit/card \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "amount": 2
}'
{
  "status": "ok",
  "data": {
    "payment_link": "<string>"
  }
}

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

Response

Card deposit initiated

status
string
Example:

"ok"

data
object