PATCH
/
v1
/
orgs
/
{org_id}
/
versions
/
{service}
Update Organization's Service Version
curl --request PATCH \
  --url https://api.bland.ai/v1/orgs/{org_id}/versions/{service} \
  --header 'Content-Type: application/json' \
  --header 'authorization: <authorization>' \
  --data '{
  "version": "<string>"
}'
{
  "data": null,
  "errors": null
}

Headers

authorization
string
required
Your API key for authentication.

Path Parameters

org_id
string
required
The unique identifier of the organization.
service
string
required
The name of the service whose version you want to update.

Valid values: "api_server", "ws_server"

Body

version
string
required
The new version identifier to set for the specified service.

Response

data
null
Always null upon successful update.
errors
null
Always null on success.
{
  "data": null,
  "errors": null
}