Updated on 2026-01-20 GMT+08:00

Querying API Versions

Function

This API is used to query API versions.

URI

GET /das

Request Parameters

None

Response Parameters

Status code: 200

Table 1 Response body parameters

Parameter

Type

Description

versions

Array of ApiVersion objects

Definition

API version details

Range

N/A

Table 2 ApiVersion

Parameter

Type

Description

id

String

Definition

API version, for example, v3

Range

N/A

status

String

Definition

Version status

Range

  • CURRENT: The current version is recommended.
  • SUPPORTED: The current version is supported.
  • DEPRECATED: The current version is deprecated and may be deleted later.

updated

String

Definition

Version release time in the format of yyyy-mm-ddThh:mm:ssZ T is the separator between the calendar and the hourly notation of time. Z indicates the Coordinated Universal Time (UTC).

Range

N/A

version

String

Definition

API microversion. If the APIs do not support microversions, the value is left blank.

Range

N/A

Example Requests

Querying API versions

Example Responses

Status code: 200

{
  "versions" : [ {
    "id" : "v3",
    "version" : "",
    "status" : "CURRENT",
    "updated" : "2021-01-15T12:00:00Z"
  } ]
}

Status Codes

Status Code

Description

200

Successful response

Error Codes

See Error Codes.