---
title: "Update Current Organization Info"
method: PATCH
path: "/api/v1/orgs/current/info"
tags: ["orgs"]
---

# Update Current Organization Info

`PATCH /api/v1/orgs/current/info`

## Request body

- OrganizationUpdate — Update organization schema.
  - `display_name` string
  - `public_sharing_disabled` boolean, nullable
  - `pat_creation_disabled` boolean, nullable
  - `unshare_all` boolean, nullable
  - `jit_provisioning_enabled` boolean, nullable
  - `workspace_admin_can_invite_to_org` boolean, nullable
  - `invites_enabled` boolean, nullable
  - `max_api_key_expiry_days` integer, nullable
  - `security_contact` string, email, nullable
  - `max_pat_expiry_days` integer, nullable
  - `max_service_key_expiry_days` integer, nullable
  - `scim_group_name_separator` string
  - `llm_auth_proxy_enabled` boolean, nullable
  - `llm_auth_proxy_jwt_audience` string, nullable
  - `ip_allowlist` string[], nullable
  - `restrict_browser_secrets` boolean, nullable
  - `llm_auth_proxy_allowed_urls` string[], nullable
  - `engine_enabled` boolean, nullable

## Response `200`

Successful Response

- OrganizationInfo — Information about an organization. IMPORTANT: Keep in sync with Go OrganizationInfo in smith-go/orgs/handler.go while both implementations are in use (weighted routing rollout).
  - `id` string, uuid, nullable
  - `display_name` string, nullable
  - `config` OrganizationConfig, required — Organization level configuration. May include any field that exists in tenant config and additional fields.
    - `plan_tier` string, nullable
    - `engine_default_enabled` boolean
    - `max_identities` integer
    - `max_workspaces` integer
    - `can_use_rbac` boolean
    - `can_use_abac` boolean
    - `can_use_audit_logs` boolean
    - `can_add_seats` boolean
    - `startup_plan_approval_date` string, nullable
    - `partner_plan_approval_date` string, nullable
    - `premier_plan_approval_date` string, nullable
    - `can_disable_public_sharing` boolean
    - `can_use_langgraph_cloud` boolean
    - `max_langgraph_cloud_deployments` integer
    - `max_free_langgraph_cloud_deployments` integer
    - `sandbox_enabled` boolean
    - `max_sandboxes` integer
    - `max_sandbox_cpu` string
    - `max_sandbox_memory` string
    - `can_use_saml_sso` boolean
    - `can_use_bulk_export` boolean
    - `show_updated_sidenav` boolean
    - `show_updated_resource_tags` boolean
    - `kv_dataset_message_support` boolean
    - `show_playground_prompt_canvas` boolean
    - `allow_custom_iframes` boolean
    - `byoc_enabled` boolean
    - `enable_langgraph_pricing` boolean
    - `enable_thread_view_playground` boolean
    - `enable_org_usage_charts` boolean
    - `use_exact_search_for_prompts` boolean
    - `langgraph_deploy_own_cloud_enabled` boolean
    - `prompt_optimization_jobs_enabled` boolean
    - `demo_lgp_new_graph_enabled` boolean
    - `datadog_rum_session_sample_rate` integer
    - `langgraph_remote_reconciler_enabled` boolean
    - `langgraph_enterprise_enabled` boolean
    - `langsmith_alerts_poc_enabled` boolean
    - `tenant_skip_topk_facets` boolean
    - `lgp_templates_enabled` boolean
    - `enable_align_evaluators` boolean
    - `enable_run_tree_streaming` boolean
    - `enable_querying_v2_endpoints` boolean
    - `enable_threads_improvements` boolean
    - `max_prompt_webhooks` integer
    - `playground_evaluator_strategy` string, nullable
    - `can_set_api_key_max_expiry` boolean
    - `can_use_llm_auth_proxy` boolean
    - `can_restrict_browser_secrets` boolean
    - `enable_monthly_usage_charts` boolean
    - `new_rule_evaluator_creation_version` integer
    - `enable_lgp_listeners_page` boolean
    - `clio_enabled` boolean
    - `enable_markdown_in_tracing` boolean
    - `enable_pricing_redesign` boolean
    - `arbitrary_cost_tracking_enabled` boolean
    - `langsmith_deployment_distributed_runtime_enabled` boolean
    - `agent_builder_enabled` boolean
    - `max_agent_builder_assistants` integer
    - `enable_granular_usage_reporting` boolean
    - `enable_burndown_vs_commit_view` boolean
    - `max_agent_builder_runs` integer
    - `langsmith_deployment_dr_enabled_dev` boolean
    - `ip_allowlist_enabled` boolean
    - `llm_gateway_enabled` boolean
    - `managed_deep_agents_enabled` boolean
  - `engine_enabled` boolean, nullable
  - `is_personal` boolean, required
  - `tier` 'no_plan' | 'developer' | 'developer_01_2026' | 'plus' | 'plus_01_2026' | 'enterprise' | 'developer_legacy' | 'plus_legacy' | 'free' | 'enterprise_legacy' | 'startup' | 'startup_v0' | 'partner' | 'premier'
  - `reached_max_workspaces` boolean
  - `permissions` string[]
  - `disabled` boolean
  - `member_disabled` boolean
  - `sso_only` boolean
  - `jit_provisioning_enabled` boolean
  - `invites_enabled` boolean
  - `sso_login_slug` string, nullable
  - `public_sharing_disabled` boolean
  - `pat_creation_disabled` boolean
  - `workspace_admin_can_invite_to_org` boolean
  - `marketplace_payouts_enabled` boolean
  - `default_sso_provision` boolean
  - `max_api_key_expiry_days` integer, nullable
  - `security_contact` string, nullable
  - `max_pat_expiry_days` integer, nullable
  - `max_service_key_expiry_days` integer, nullable
  - `scim_group_name_separator` string
  - `can_export_usage_backfill` boolean
  - `llm_auth_proxy_enabled` boolean, nullable
  - `llm_auth_proxy_jwt_audience` string, nullable
  - `ip_allowlist` string[]
  - `ip_allowlist_enabled` boolean
  - `restrict_browser_secrets` boolean, nullable
  - `llm_auth_proxy_allowed_urls` string[], nullable

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/langchain-ai/apis/langsmith.md) · [All operations](https://skmtc.net/langchain-ai/apis/langsmith/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/langchain-ai/langsmith/versions/a0acb3a6a101/schema)
