cURL
curl --request PATCH \ --url https://api.lithoblocks.com/users/profile \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "first_name": "<string>", "last_name": "<string>", "email": "[email protected]" } '
{ "id": "<string>", "firstName": "<string>", "lastName": "<string>", "email": "<string>", "organizationId": "<string>", "createdAt": "<string>", "updatedAt": "<string>" }
Update the current user’s profile information (first name, last name, and/or email)
LithoBlocks API key obtained from your organization dashboard
Profile update data
100
Updated profile