Service Management
List Services
Get a list of services.
If the access token can only view or modify clients underneath a service, but does not have access to view that service directly, a limited view of the service will be returned. Otherwise, all properties of the service are returned.
If the access token is an administrative token, this returns a list of all services on the Authlete instance. Otherwise, all services that the access token can view, even in a limited fashion, are returned.
get/api/service/get/list
Query parameters
startinteger
Start index (inclusive) of the result set. The default value is 0. Must not be a negative number.
endinteger
End index (exclusive) of the result set. The default value is 5. Must not be a negative number.
Response
Example response
{
"services": [
{
"number": 715948317,
"serviceName": "My Test Service",
"issuer": "https://example.com",
"supportedScopes": [
"profile",
"email",
"openid"
],
"supportedResponseTypes": [
"CODE"
],
"supportedGrantTypes": [
"AUTHORIZATION_CODE",
"REFRESH_TOKEN"
]
}
]
}