cURL
curl --request POST \ --url https://app.d-sports.org/api/thirdweb-link \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "payload": "<unknown>" } '
Returns the authenticated user’s ID and email for Thirdweb wallet linking.
Clerk session token. Use Authorization: Bearer .
Arbitrary payload (must be truthy).
{ success, data: { userId, email } }
Was this page helpful?