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