> ## Documentation Index
> Fetch the complete documentation index at: https://docs.bland.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Update Organization's Service Version

> Update the current version of a specified service for an organization.

### Headers

<ParamField header="authorization" type="string" required>
  Your API key for authentication.
</ParamField>

### Path Parameters

<ParamField path="org_id" type="string" required>
  The unique identifier of the organization.
</ParamField>

<ParamField path="service" type="string" required>
  The name of the service whose version you want to update.\
  <br />Valid values: `"api_server"`, `"ws_server"`
</ParamField>

### Body

<ParamField body="version" type="string" required>
  The new version identifier to set for the specified service.
</ParamField>

### Response

<ResponseField name="data" type="null">
  Always `null` upon successful update.
</ResponseField>

<ResponseField name="errors" type="null">
  Always `null` on success.
</ResponseField>

<ResponseExample>
  ```json Response   theme={null}
  {
    "data": null,
    "errors": null
  }

  ```
</ResponseExample>

***

Docs for agents: [llms.txt](/llms.txt)
