Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

IOrganizationManager

Syntax

await _organizationManagerOrganizationManager.GetAll()

Returns

Task<IEnumerable<Organization>>

API

GET
/api/v1/organizations

Returns

On success, 200 Ok

On error, 400 Bad Request

On authorization error, 403 Forbidden

Example

Code Block
languagec#
var organizations = await _organizationManager.GetAll();

...