PATCH
/
wallets
/
threshold
Update Wallet Threshold
curl --request PATCH \
  --url https://api.linearsend.com/wallets/threshold \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "currency": "<string>",
  "threshold": 1
}
'
{
  "success": true,
  "statusCode": 123,
  "code": "<string>",
  "message": "<string>",
  "data": {
    "currency": "<string>",
    "balance": 123,
    "threshold": 123
  },
  "meta": {}
}

Authorizations

Authorization
string
header
required

JWT access token

Body

application/json
currency
string
required
Required string length: 3
threshold
number
required
Required range: x >= 0

Response

Wallet threshold updated successfully

success
boolean
required
statusCode
integer
required
code
string
required
message
string
required
data
object
required
meta
object
required