GET /api/management/servicetype

Description

Get the service type of the API Server or Node Manager. This is an internal product type string identifier e.g. VordelGateway, VordelNodeManager etc.

The Management API resides in the API Servers, therefore this method must be invoked via the Routing API in the Admin Node Manager, e.g. https://localhost:8090/api/router/service/instance-1/api/management/servicetype for an API Server instance, and https://localhost:8090/api/router/service/nodemanager-1/api/management/servicetype for a Node Manager. It is possible to invoke the method directly on the Admin Node Manager i.e. https://localhost:8090/api/management/servicetype.


Resource URL

https://localhost:8090/api/management/servicetype
https://localhost:8090/api/router/service/{serviceID}/api/management/servicetype


Parameters


Response Codes

Response Code Description
200 Success. The response body contains a service type.

Example Request and Response

GET https://localhost:8090/api/router/service/instance-1/api/management/servicetype

HTTP 1.1 200 OK

{
    "result": "VordelGateway"
}