Get a list of organizations
Description
Get a list of organizations.
Package Details
Interface
IOrganizationManager
Syntax
await _organizationManager.GetAll()
Returns
Task<IEnumerable<Organization>>
API
GET
/api/v1/organizations
Returns
200 OK - Organizations
Example
Code Block |
---|
var organizations = await _organizationManager.GetAll(); |
...