Current Active Services

Current Active Services

Returns an array of currently active services and their details, optionally filtered by query parameters. If more than one filter is provided the result is the intersection (boolean AND) of the filters.

Request
URI
GET
https://{api_host}/dms/service/v0alpha1/services
COPY
Query Parameters
string
service_type
Optional

The type of service (platform or rapp) to match.

string
name
Optional

The name of service to match.


Responses
200

Successful operation

Returns Array of Service of type(s) application/json
[
    {
        "name": "pmhistory",
        "version": "0.1.0",
        "display_name": "PM Counter History",
        "description": "An rApp producer for querying historical PM Counter data.",
        "updated_at": 1632781620000000000,
        "created_at": 1632781620000000000,
        "service_type": "platform",
        "service_href": "http://pmhistory:8080/v0alpha1",
        "status": "REGISTERED"
    }
]