Backend API
Update user profile information
cURL
curl --request PATCH \ --url https://api.wacht.dev/users/{user_id} \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "first_name": "<string>", "last_name": "<string>", "metadata": {} } '
{ "message": "Resource not found" }
API key authentication (Bearer token)
User updated successfully
Was this page helpful?