Skip to main content
PATCH
/
v1
/
users
/
profile
Update user profile
curl --request PATCH \
  --url https://api.lithoblocks.com/v1/users/profile \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "first_name": "<string>",
  "last_name": "<string>",
  "email": "jsmith@example.com"
}
'
{
  "id": "<string>",
  "first_name": "<string>",
  "last_name": "<string>",
  "email": "<string>",
  "organization_id": "<string>",
  "created_at": "<string>",
  "updated_at": "<string>"
}

Documentation Index

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

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

Authorizations

Authorization
string
header
required

LithoBlocks API key obtained from your organization dashboard

Body

application/json

Profile update data

first_name
string
Maximum string length: 100
last_name
string
Maximum string length: 100
email
string<email>

Response

Updated profile

id
string
required
first_name
string | null
required
last_name
string | null
required
email
string | null
required
organization_id
string | null
required
created_at
string
required
updated_at
string
required