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 2 Next »

Get an organization by email

Description

Get an organization by email.

Package Details

Interface

IOrganizationManager

Syntax

await _organizationManager.FindByEmail(string email);

Returns

Task<IEnumerable<Organization>>

API

GET
/api/v1/organizations?email={email}

Parameters

Parameter

Description

Parameter Type

email

The Email address associated to the organization

path

Returns

200 OK - Organization

Example

var email = "user@domain.com";
var organization = await _organizationManager.FindByEmail(email);

  • No labels