cURL
curl --request POST \ --url https://app.d-sports.org/api/wallets/set-pin \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "walletId": "<string>", "pin": "<string>" } '
Sets or updates the 6-digit PIN for a wallet.
Clerk session token. Use Authorization: Bearer .
ID of the wallet to set the PIN for.
Exactly 6 digits.
^\d{6}$
{ success, data: { pinSet: true } }
Was this page helpful?