QueryApiSupportVersions
List all SMN API versions.
GET /
GET https://{SMN_Endpoint}/
Parameter |
Type |
Description |
|---|---|---|
versions |
Versions structure |
Version object list. For details, see Table 1. |
Parameter |
Type |
Description |
|---|---|---|
id |
String |
Version number, for example, v2 |
min_version |
String |
Minimum micro-version number. If the APIs do not support micro-versions, no information will be returned. |
status |
String |
Version status, which can be the following:
|
updated |
String |
Version release time, which must be UTC time. For example, the release time of v2 is 2014-06-28T12:20:21Z. |
version |
String |
Maximum micro-version number. If the APIs do not support micro-versions, no information will be returned. |
links |
Links structure array |
URL of an API. For details, see Table 2. |
{
"versions": [
{
"id": "v2",
"links": [
{
"href": "https://127.0.0.1/v2",
"rel": "self"
}
],
"min_version": "",
"status": "CURRENT",
"updated": "2018-09-19T00:00:00Z",
"version": ""
}
]
}
See section Returned Value.
See section Error Code.