GET /
Parameter |
Type |
Description |
---|---|---|
versions |
Array of objects |
Lists the versions of VPCEP APIs. For details, see Table 2. |
Parameter |
Type |
Description |
---|---|---|
status |
String |
Specifies the version status.
|
id |
String |
Specifies the version ID. |
updated |
String |
Specifies the time when the API version was released. The UTC time format is used: YYYY-MM-DDTHH:MM:SSZ. |
version |
String |
Specifies the supported version. |
min_version |
String |
Specifies the microversion number. If the APIs do not support microversions, the value is left blank. |
links |
Array of objects |
Specifies the API URL. For details, see Table 3. |
Parameter |
Type |
Description |
---|---|---|
href |
String |
Specifies the reference address of the current API version. |
type |
String |
Specifies the MIME type of the entity sending the request. The value is application/json. |
rel |
String |
Specifies the relationship between the current API version and the referenced address. |
{ "versions": [ { "status": "CURRENT", "id": "v1", "updated": "2018-09-30T00:00:00Z", "version": "1", "links": [ { "rel": "self", "href": "https://{vpcep_uri}/v1", "type": "application/json" } ], "min_version": "" }, { "status": "CURRENT", "id": "v2", "updated": "2020-03-30T00:00:00Z", "version": "2", "links": [ { "rel": "self", "href": "https://{vpcep_uri}/v2", "type": "application/json" } ], "min_version": "" } ] }
See Status Codes.