Retrieves a list of profile versions of the specified application deployment
GEThttps://api.spectrocloud.com/v1/appDeployments/:uid/profile/versions
Retrieves a list of profile versions of the specified application deployment
Request
Path Parameters
uid stringrequired
Application deployment uid
Header Parameters
ProjectUid string
Scope the request to the specified project uid
Responses
- 200
OK
- application/json
- Schema
- Example (from schema)
Schema
availableVersions
object[]
latestVersions
object[]
metadata
object
{
"availableVersions": [
{
"uid": "string",
"version": "string"
}
],
"latestVersions": [
{
"uid": "string",
"version": "string"
}
],
"metadata": {
"name": "string",
"uid": "string",
"version": "string"
}
}
- curl
- python
- go
- nodejs
- java
- CURL
curl -L 'https://api.spectrocloud.com/v1/appDeployments/:uid/profile/versions' \
-H 'Accept: application/json' \
-H 'ApiKey: <API_KEY_VALUE>'