Get Advisors List (Reserved)
Retrieve the list of advisors available for a specific application.
This operation returns advisors from the latest advisor version for the specified application.
URI
GET /rest/applications/{name}/advisors/list
Path parameters
name (string)
This parameter identifies the analyzed application. The application name must be properly encoded if required. Character back-quote is not allowed.
Responses
application/json
Example:
{
"results": [
{
"id": 1202174,
"name": "Move to Amazon Web Services",
"version": "3.6.0"
},
{
"id": 1202139,
"name": "Database Migration",
"version": "3.6.0"
},
{
"id": 1202283,
"name": "Move to Azure",
"version": "3.6.0"
},
{
"id": 1202323,
"name": "Move to Google Cloud (GCP)",
"version": "3.6.0"
}
]
}
JSON representation
| Property | Type | Description |
|---|---|---|
| results | array | Array of advisor objects. |
| results[].id | number | The unique identifier for the advisor. |
| results[].name | string | The name of the advisor. |
| results[].version | string | The version of the advisor (latest available version). |