Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 4 Next »

Get Services

Description

Get a list of all services from the service catalog.

Package Details

Interface

IOnboardingServiceManager

Syntax

Task<IEnumerable<ServiceInfo>> GetServices();

Returns

Task<IEnumerable<ServiceInfo>>

API Endpoint

GET

/api/v1/services

Returns

On success, 200 Ok

On error, 400 Bad Request

On authorization error, 403 Forbidden

Example

var services = await _serviceCatalog.GetAll();
var serviceCatalog = services.Where(x => x.IsDisplayableInCatalog);
  • No labels