v16

OpenAPI 3.0.3Apache 2.0raw.githubusercontent.com2026-04-0886158866.0 KB
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

startinteger

Start index (inclusive) of the result set. The default value is 0. Must not be a negative number.

endinteger

Start index (inclusive) of the result set. The default value is 0. Must not be a negative number.

totalCountinteger

Total number of services owned by the service owner. This doesn't mean the number of services contained in the 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"
      ]
    }
  ]
}