Get a list of
...
organizations
Description
The GetAll() method is used to get Get a list of organizations.
Package Details
Interface
IOrganizationManager
Syntax
OrganizationiManagerawait OrganizationManager.GetAll()
Returns
Task<IEnumerable<Organization>>
API
GET
[POST] /api/v1/organizations
Returns
On success, 200 Ok
On error, 400 Bad Request
On authorization error, 403 Forbidden
Example
Code Block | ||
---|---|---|
| ||
var organizations |
...
= await _organizationManager.GetAll(); |