cURL
curl --request POST \ --url https://api.example.com/api/v1/auth/complete-signup \ --header 'Content-Type: application/json' \ --data ' { "username": "<string>", "display_name": "<string>" } '
Complete the user registration process.
curl -X POST https://api.ama2.me/api/v1/auth/complete-signup \ -H "Authorization: Bearer YOUR_JWT_TOKEN" \ -H "Content-Type: application/json" \ -d '{ "username": "alice", "display_name": "Alice" }'