Stratos maintains a REST API versioning system. The default API version will always point to the latest REST API version. However, if required a different REST API version may be used. 

Stratos REST API Versions

VersionPathReleased VersionDate Introduced
v4.1
v4.1/<RESOURCE_PATH>
Stratos 4.1.0 

Using a different REST API version

If you wish to use a specific Stratos REST API version, add the version in the HTTP request after /api/ as follows:

/api/<REST_API_VERSION>/


For example:

curl -X GET -H "Content-Type: application/json" -k -v -u admin:admin https://175.41.153.66:9443/api/v4.1/application/test_app_3

Using the default REST API version

If you wish to use the default REST API version, do not add a REST API version.
For example: 

curl -X GET -H "Content-Type: application/json" -k -v -u admin:admin  https://175.41.153.66:9443/api/application/test_app_3
  • No labels