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

Version 1 Next »

Retrieve the business system for a given stakeholder.

Description

Retrieve the business system for a given stakeholder.

Package Details

Interface

IBusinessSystemManager

Syntax

BusinessSystemManager.GetBusinessSystemById(int id);

Returns

Task<IEnumerable<BusinessSystemDTO>>

API

[GET] /api/v1/business-systems/{id}

Parameters

Path
Id: The stakeholder id

Returns

200 OK - Business system DTO

Example

int id = 4655;
var businessSystem = await _businessSystemManager.GetBusinessSystemById(id);

  • No labels