Truztcube Docs

Set low balance threshold

Set a threshold amount for low balance notifications for the authenticated organisation.

POST/v1/wallet/low-balance-threshold
AuthorizationBearer <token>

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://example.com/v1/wallet/low-balance-threshold" \  -H "Content-Type: application/json" \  -d '{    "threshold": 100  }'
{  "success": true,  "statusCode": 200,  "message": "Request processed successfully",  "timestamp": "2025-10-20T16:30:00.000Z",  "path": "/v1/auth/register",  "data": {    "message": "Low balance threshold set successfully",    "threshold": 100  }}