cURL
curl --request PUT \ --url https://api.example.com/v1/me \ --header 'Content-Type: application/json' \ --data ' { "name": "<string>", "timezone": "<string>" } '
Update user settings like name and timezone
curl -X PUT "https://app.transcord.app/api/v1/me" \ -H "Authorization: Bearer tr_live_your_api_key" \ -H "Content-Type: application/json" \ -d '{"name": "John Smith", "timezone": "America/Los_Angeles"}'
{ "user": { "id": "clx1234567890", "email": "you@example.com", "name": "John Smith", "phoneNumber": "4155555678", "timezone": "America/Los_Angeles", "createdAt": "2026-01-01T00:00:00.000Z" } }
400
401