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:
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.