LangChain Support
Back to General

Update Organization Name

General·1 min read·Oct 20, 2025··

Question: How do I update an Organization Name in LangSmith?

Answer: Currently there’s no way to update an organization name in the LangSmith UI. It is possible to update an organization name using the API with a PAT (Personal Access Token) connected to an Organization Admin by making the following API Call:

https://api.smith.langchain.com/docs#/orgs/update_current_organization_info_api_v1_orgs_current_info_patch

curl -X PATCH "<https://api.smith.langchain.com/api/v1/orgs/current/info>" \\
-H "Content-Type: application/json" \\
-H "x-api-key: <orgadmin-api-key>" \\
-d '{
    "display_name": "<new-org-name>"
}'

The API calls can be made in Python as well, this code can be referenced as an example: https://docs.smith.langchain.com/administration/how_to_guides/organization_management/manage_organization_by_api#sample-code

Note: you cannot rename a personal organization.