GET
/
v1
/
orgs
/
{org_id}
/
versions
/
{service}
/
current
curl --request GET \
  --url https://api.bland.ai/v1/orgs/{org_id}/versions/{service}/current \
  --header 'authorization: <authorization>'
{
  "data": {
    "version": "adf1064d-5080-4055-8493-0d4fdc3c8106"
  },
  "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 retrieve.

Valid values: "api_server", "ws_server"

Response

data
object

Contains the current version of the requested service.

data.version
string

The current version identifier of the service.

errors
null

Always null on success.

{
  "data": {
    "version": "adf1064d-5080-4055-8493-0d4fdc3c8106"
  },
  "errors": null
}