Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.sertexity.com/llms.txt

Use this file to discover all available pages before exploring further.

Get Profile

Retrieve the authenticated user’s profile. GET /account/profile  ·  🔒 Auth required

Response 200 OK

{
  "id": "usr_01hx3k9j2e4m7n8p",
  "email": "alice@example.com",
  "name": "Alice",
  "timezone": "UTC",
  "language": "en",
  "created_at": "2024-09-15T10:30:00Z",
  "updated_at": "2024-11-02T08:15:44Z"
}
FieldTypeDescription
idstringUnique user ID
emailstringEmail address
namestringDisplay name
timezonestringIANA timezone
languagestringISO 639-1 language code
created_atstringISO 8601
updated_atstringISO 8601

Example

curl https://api.sertexity.com/v1/account/profile \
  -H "Authorization: Bearer <access_token>"