Skip to main content
PUT
/
v1
/
me
Update User
curl --request PUT \
  --url https://api.example.com/v1/me \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "timezone": "<string>"
}
'
Update your account settings. Currently supports updating name and timezone.
Email and phone number changes require verification and must be done through the web interface at Settings.

Request Body

name
string
Your display name (can be null to clear)
timezone
string
Your timezone for timestamps. See GET /v1/timezones for valid values.

Request

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"}'

Response

Response
{
  "user": {
    "id": "clx1234567890",
    "email": "you@example.com",
    "name": "John Smith",
    "phoneNumber": "4155555678",
    "timezone": "America/Los_Angeles",
    "createdAt": "2026-01-01T00:00:00.000Z"
  }
}

Errors

StatusDescription
400Invalid timezone or no valid fields provided
401Invalid or missing API key